├── .editorconfig ├── .travis.yml ├── AUTHORS.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── antigate ├── __init__.py └── backends │ ├── __init__.py │ ├── grab_lib.py │ ├── requests_lib.py │ └── urllib_lib.py ├── captcha ├── 123.jpg └── 456.jpg ├── docs ├── Makefile ├── __init__.py ├── authors.rst ├── conf.py ├── contributing.rst ├── index.rst ├── installation.rst ├── settings.py └── usage.rst ├── requirements ├── package.txt ├── readthedocs.txt └── tests.txt ├── setup.cfg ├── setup.py ├── test_cases.py └── tox.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotlium/antigate/HEAD/.editorconfig -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotlium/antigate/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotlium/antigate/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotlium/antigate/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotlium/antigate/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotlium/antigate/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotlium/antigate/HEAD/README.rst -------------------------------------------------------------------------------- /antigate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotlium/antigate/HEAD/antigate/__init__.py -------------------------------------------------------------------------------- /antigate/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /antigate/backends/grab_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotlium/antigate/HEAD/antigate/backends/grab_lib.py -------------------------------------------------------------------------------- /antigate/backends/requests_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotlium/antigate/HEAD/antigate/backends/requests_lib.py -------------------------------------------------------------------------------- /antigate/backends/urllib_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotlium/antigate/HEAD/antigate/backends/urllib_lib.py -------------------------------------------------------------------------------- /captcha/123.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotlium/antigate/HEAD/captcha/123.jpg -------------------------------------------------------------------------------- /captcha/456.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotlium/antigate/HEAD/captcha/456.jpg -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotlium/antigate/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotlium/antigate/HEAD/docs/authors.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotlium/antigate/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotlium/antigate/HEAD/docs/contributing.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotlium/antigate/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotlium/antigate/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotlium/antigate/HEAD/docs/settings.py -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotlium/antigate/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /requirements/package.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotlium/antigate/HEAD/requirements/package.txt -------------------------------------------------------------------------------- /requirements/readthedocs.txt: -------------------------------------------------------------------------------- 1 | Django>=1.8,<1.9 2 | Sphinx==1.3.3 3 | -------------------------------------------------------------------------------- /requirements/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotlium/antigate/HEAD/requirements/tests.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotlium/antigate/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotlium/antigate/HEAD/setup.py -------------------------------------------------------------------------------- /test_cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotlium/antigate/HEAD/test_cases.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotlium/antigate/HEAD/tox.ini --------------------------------------------------------------------------------