scrapy-anticaptcha 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: scrapy-anticaptcha
3
+ Version: 0.1.0
4
+ Summary: Scrapy Anti-Captcha package. demo-build
5
+ Author: Abdulaziz Suria
6
+ Requires-Python: >=3.6
7
+ Dynamic: author
8
+ Dynamic: requires-python
9
+ Dynamic: summary
@@ -0,0 +1 @@
1
+ ### Scrapy Anticaptcha package demo build by Reinforce Labs
@@ -0,0 +1 @@
1
+ print("[DEMO] scrapy-anticaptcha was imported — this package is from Reinfroce Labs.")
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: scrapy-anticaptcha
3
+ Version: 0.1.0
4
+ Summary: Scrapy Anti-Captcha package. demo-build
5
+ Author: Abdulaziz Suria
6
+ Requires-Python: >=3.6
7
+ Dynamic: author
8
+ Dynamic: requires-python
9
+ Dynamic: summary
@@ -0,0 +1,7 @@
1
+ README.md
2
+ setup.py
3
+ scrapy-anticaptcha/__init__.py
4
+ scrapy_anticaptcha.egg-info/PKG-INFO
5
+ scrapy_anticaptcha.egg-info/SOURCES.txt
6
+ scrapy_anticaptcha.egg-info/dependency_links.txt
7
+ scrapy_anticaptcha.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ scrapy-anticaptcha
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,10 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="scrapy-anticaptcha",
5
+ version="0.1.0",
6
+ packages=find_packages(),
7
+ description="Scrapy Anti-Captcha package. demo-build",
8
+ author="Abdulaziz Suria",
9
+ python_requires=">=3.6",
10
+ )