Skip to content

Commit

Permalink
update .gitignore, and add version to spider
Browse files Browse the repository at this point in the history
  • Loading branch information
xianhu committed Nov 8, 2017
1 parent 06fb2a6 commit 24cc40d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 12 deletions.
13 changes: 2 additions & 11 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,18 +1,9 @@
*.[oa]
*.py[co]
*.exe
.*
*.log
*.out
*.dat
*.txt
*.png
*.jpg
*.jpeg

.*
data/
build/
spider/__pycache__/
spider/concurrent/__pycache__/
spider/instances/__pycache__/
spider/utilities/__pycache__/
*.py[co]
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name="spider",
version="2.7.1",
version="2.7.2",
author="xianhu",
keywords=["spider", "crawler", "multi-threads", "distributed"],
packages=find_packages(exclude=("test.*",)),
Expand Down
2 changes: 2 additions & 0 deletions spider/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
define WebSpider, WebSpiderDist, and also define utilities and instances for web_spider
"""

__version__ = "2.7.2"

from .utilities import *
from .instances import Fetcher, Parser, Saver
from .concurrent import TPEnum, WebSpider, WebSpiderDist

0 comments on commit 24cc40d

Please sign in to comment.