├── README.md ├── api ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── about.cpython-37.pyc │ ├── contact_us.cpython-37.pyc │ ├── files.cpython-37.pyc │ ├── login.cpython-37.pyc │ ├── product.cpython-37.pyc │ ├── product_class.cpython-37.pyc │ └── verify.cpython-37.pyc ├── about.py ├── contact_us.py ├── files.py ├── login.py ├── product.py ├── product_class.py └── verify.py ├── common ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── convert_helper.cpython-37.pyc │ ├── datetime_helper.cpython-37.pyc │ ├── db_helper.cpython-37.pyc │ ├── encrypt_helper.cpython-37.pyc │ ├── except_helper.cpython-37.pyc │ ├── file_helper.cpython-37.pyc │ ├── json_helper.cpython-37.pyc │ ├── log_helper.cpython-37.pyc │ ├── mail_helper.cpython-37.pyc │ ├── random_helper.cpython-37.pyc │ ├── string_helper.cpython-37.pyc │ ├── verify_helper.cpython-37.pyc │ └── web_helper.cpython-37.pyc ├── convert_helper.py ├── datetime_helper.py ├── db_helper.py ├── encrypt_helper.py ├── except_helper.py ├── file_helper.py ├── json_helper.py ├── log_helper.py ├── mail_helper.py ├── random_helper.py ├── string_helper.py ├── verify_helper.py └── web_helper.py ├── config ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ └── const.cpython-37.pyc └── const.py ├── grab ├── curd.py ├── douBanLogin.py ├── grabBaiduTieBaData.py ├── grabDouBanCommentData.py ├── grabNovelData.py ├── grabQiDianData.py ├── grabQiuShiBaiKeData.py ├── grabTaoBaoCouponData.py ├── grabTaoDogNewsData.py ├── grabWeChatData.py ├── grabWebSiteImage.py ├── grabXiaoYouCaiData.py ├── peppa_pig.py ├── randomIp.py └── tool.py ├── main.py └── test ├── convert_helper_test.py ├── datetime_helper_test.py ├── db_helper_test.py ├── encrypt_helper_test.py ├── except_helper_test.py ├── json_helper_test.py ├── log_helper_test.py ├── mail_helper_test.py ├── random_helper_test.py └── string_helper_test.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/README.md -------------------------------------------------------------------------------- /api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/api/__init__.py -------------------------------------------------------------------------------- /api/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/api/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /api/__pycache__/about.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/api/__pycache__/about.cpython-37.pyc -------------------------------------------------------------------------------- /api/__pycache__/contact_us.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/api/__pycache__/contact_us.cpython-37.pyc -------------------------------------------------------------------------------- /api/__pycache__/files.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/api/__pycache__/files.cpython-37.pyc -------------------------------------------------------------------------------- /api/__pycache__/login.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/api/__pycache__/login.cpython-37.pyc -------------------------------------------------------------------------------- /api/__pycache__/product.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/api/__pycache__/product.cpython-37.pyc -------------------------------------------------------------------------------- /api/__pycache__/product_class.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/api/__pycache__/product_class.cpython-37.pyc -------------------------------------------------------------------------------- /api/__pycache__/verify.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/api/__pycache__/verify.cpython-37.pyc -------------------------------------------------------------------------------- /api/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/api/about.py -------------------------------------------------------------------------------- /api/contact_us.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/api/contact_us.py -------------------------------------------------------------------------------- /api/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/api/files.py -------------------------------------------------------------------------------- /api/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/api/login.py -------------------------------------------------------------------------------- /api/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/api/product.py -------------------------------------------------------------------------------- /api/product_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/api/product_class.py -------------------------------------------------------------------------------- /api/verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/api/verify.py -------------------------------------------------------------------------------- /common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/common/__init__.py -------------------------------------------------------------------------------- /common/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/common/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /common/__pycache__/convert_helper.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/common/__pycache__/convert_helper.cpython-37.pyc -------------------------------------------------------------------------------- /common/__pycache__/datetime_helper.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/common/__pycache__/datetime_helper.cpython-37.pyc -------------------------------------------------------------------------------- /common/__pycache__/db_helper.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/common/__pycache__/db_helper.cpython-37.pyc -------------------------------------------------------------------------------- /common/__pycache__/encrypt_helper.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/common/__pycache__/encrypt_helper.cpython-37.pyc -------------------------------------------------------------------------------- /common/__pycache__/except_helper.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/common/__pycache__/except_helper.cpython-37.pyc -------------------------------------------------------------------------------- /common/__pycache__/file_helper.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/common/__pycache__/file_helper.cpython-37.pyc -------------------------------------------------------------------------------- /common/__pycache__/json_helper.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/common/__pycache__/json_helper.cpython-37.pyc -------------------------------------------------------------------------------- /common/__pycache__/log_helper.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/common/__pycache__/log_helper.cpython-37.pyc -------------------------------------------------------------------------------- /common/__pycache__/mail_helper.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/common/__pycache__/mail_helper.cpython-37.pyc -------------------------------------------------------------------------------- /common/__pycache__/random_helper.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/common/__pycache__/random_helper.cpython-37.pyc -------------------------------------------------------------------------------- /common/__pycache__/string_helper.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/common/__pycache__/string_helper.cpython-37.pyc -------------------------------------------------------------------------------- /common/__pycache__/verify_helper.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/common/__pycache__/verify_helper.cpython-37.pyc -------------------------------------------------------------------------------- /common/__pycache__/web_helper.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/common/__pycache__/web_helper.cpython-37.pyc -------------------------------------------------------------------------------- /common/convert_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/common/convert_helper.py -------------------------------------------------------------------------------- /common/datetime_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/common/datetime_helper.py -------------------------------------------------------------------------------- /common/db_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/common/db_helper.py -------------------------------------------------------------------------------- /common/encrypt_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/common/encrypt_helper.py -------------------------------------------------------------------------------- /common/except_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/common/except_helper.py -------------------------------------------------------------------------------- /common/file_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/common/file_helper.py -------------------------------------------------------------------------------- /common/json_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/common/json_helper.py -------------------------------------------------------------------------------- /common/log_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/common/log_helper.py -------------------------------------------------------------------------------- /common/mail_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/common/mail_helper.py -------------------------------------------------------------------------------- /common/random_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/common/random_helper.py -------------------------------------------------------------------------------- /common/string_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/common/string_helper.py -------------------------------------------------------------------------------- /common/verify_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/common/verify_helper.py -------------------------------------------------------------------------------- /common/web_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/common/web_helper.py -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/config/__init__.py -------------------------------------------------------------------------------- /config/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/config/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /config/__pycache__/const.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/config/__pycache__/const.cpython-37.pyc -------------------------------------------------------------------------------- /config/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/config/const.py -------------------------------------------------------------------------------- /grab/curd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/grab/curd.py -------------------------------------------------------------------------------- /grab/douBanLogin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/grab/douBanLogin.py -------------------------------------------------------------------------------- /grab/grabBaiduTieBaData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/grab/grabBaiduTieBaData.py -------------------------------------------------------------------------------- /grab/grabDouBanCommentData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/grab/grabDouBanCommentData.py -------------------------------------------------------------------------------- /grab/grabNovelData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/grab/grabNovelData.py -------------------------------------------------------------------------------- /grab/grabQiDianData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/grab/grabQiDianData.py -------------------------------------------------------------------------------- /grab/grabQiuShiBaiKeData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/grab/grabQiuShiBaiKeData.py -------------------------------------------------------------------------------- /grab/grabTaoBaoCouponData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/grab/grabTaoBaoCouponData.py -------------------------------------------------------------------------------- /grab/grabTaoDogNewsData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/grab/grabTaoDogNewsData.py -------------------------------------------------------------------------------- /grab/grabWeChatData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/grab/grabWeChatData.py -------------------------------------------------------------------------------- /grab/grabWebSiteImage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/grab/grabWebSiteImage.py -------------------------------------------------------------------------------- /grab/grabXiaoYouCaiData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/grab/grabXiaoYouCaiData.py -------------------------------------------------------------------------------- /grab/peppa_pig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/grab/peppa_pig.py -------------------------------------------------------------------------------- /grab/randomIp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/grab/randomIp.py -------------------------------------------------------------------------------- /grab/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/grab/tool.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/main.py -------------------------------------------------------------------------------- /test/convert_helper_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/test/convert_helper_test.py -------------------------------------------------------------------------------- /test/datetime_helper_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/test/datetime_helper_test.py -------------------------------------------------------------------------------- /test/db_helper_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/test/db_helper_test.py -------------------------------------------------------------------------------- /test/encrypt_helper_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/test/encrypt_helper_test.py -------------------------------------------------------------------------------- /test/except_helper_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/test/except_helper_test.py -------------------------------------------------------------------------------- /test/json_helper_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/test/json_helper_test.py -------------------------------------------------------------------------------- /test/log_helper_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/test/log_helper_test.py -------------------------------------------------------------------------------- /test/mail_helper_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/test/mail_helper_test.py -------------------------------------------------------------------------------- /test/random_helper_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/test/random_helper_test.py -------------------------------------------------------------------------------- /test/string_helper_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenjunzhangp/becatPython/HEAD/test/string_helper_test.py --------------------------------------------------------------------------------