Skip to content

Commit

Permalink
update code, version 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
xianhu committed Nov 28, 2016
1 parent 01e62d8 commit dcdf24e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
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="1.6.0",
version="1.6.1",
author="xianhu",
keywords=["spider", "crawler"],
packages=find_packages(exclude=("test", "test.*", "demos_*")),
Expand Down
3 changes: 1 addition & 2 deletions spider/abcbase/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@
define base classes which used in concurrent module and distributed module
"""

from .abc_base import TPEnum
from .abc_insts import FetchThread, ParseThread, SaveThread, MonitorThread
from .abc_base import TPEnum, BaseThread
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# _*_ coding: utf-8 _*_

"""
abc_insts.py by xianhu
concur_insts.py by xianhu
"""

import time
import logging
from .abc_base import TPEnum, BaseThread
from ..abcbase import TPEnum, BaseThread


# ===============================================================================================================================
Expand Down
2 changes: 1 addition & 1 deletion spider/concurrent/concur_threads.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import logging
import threading
from ..abcbase import TPEnum
from ..abcbase import FetchThread, ParseThread, SaveThread, MonitorThread
from .concur_insts import FetchThread, ParseThread, SaveThread, MonitorThread


class ThreadPool(object):
Expand Down

0 comments on commit dcdf24e

Please sign in to comment.