diff --git a/LICENSE b/LICENSE.txt similarity index 100% rename from LICENSE rename to LICENSE.txt diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..be7e5b8 --- /dev/null +++ b/__init__.py @@ -0,0 +1 @@ +from scrappeycom.scrappey import Scrappey \ No newline at end of file diff --git a/dist/scrappeycom-0.1.tar.gz b/dist/scrappeycom-0.1.tar.gz new file mode 100644 index 0000000..9f6c07d Binary files /dev/null and b/dist/scrappeycom-0.1.tar.gz differ diff --git a/dist/scrappeycom-0.2.tar.gz b/dist/scrappeycom-0.2.tar.gz new file mode 100644 index 0000000..095409f Binary files /dev/null and b/dist/scrappeycom-0.2.tar.gz differ diff --git a/scrappeycom.egg-info/PKG-INFO b/scrappeycom.egg-info/PKG-INFO new file mode 100644 index 0000000..c519449 --- /dev/null +++ b/scrappeycom.egg-info/PKG-INFO @@ -0,0 +1,19 @@ +Metadata-Version: 2.1 +Name: scrappeycom +Version: 0.2 +Summary: An API wrapper for Scrappey.com written in Python (cloudflare bypass & solver) +Home-page: https://github.com/pim97/scrappey-wrapper-python +Download-URL: https://github.com/pim97/scrappey-wrapper-python/archive/refs/tags/v_01.tar.gz +Author: dormic97 +Author-email: crozz-boy@hotmail.com +License: MIT +Keywords: captcha,shape,web-scraping,data-extraction,akamai,captcha-solver,incapsula,queue-it,scraping-framework,datadome,scraping-tool,cloudflare-bypass,web-scraping-solution,scraping-library,cloudflare-anti-bot,scraping-service,web-data-extraction,anti-bot-api,perimetex +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: Topic :: Software Development :: Build Tools +Classifier: License :: OSI Approved :: MIT License +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.4 +Classifier: Programming Language :: Python :: 3.5 +Classifier: Programming Language :: Python :: 3.6 +License-File: LICENSE.txt diff --git a/scrappeycom.egg-info/SOURCES.txt b/scrappeycom.egg-info/SOURCES.txt new file mode 100644 index 0000000..4ee2325 --- /dev/null +++ b/scrappeycom.egg-info/SOURCES.txt @@ -0,0 +1,11 @@ +LICENSE.txt +README.md +setup.cfg +setup.py +scrappeycom/scrappey.py +scrappeycom/test.py +scrappeycom.egg-info/PKG-INFO +scrappeycom.egg-info/SOURCES.txt +scrappeycom.egg-info/dependency_links.txt +scrappeycom.egg-info/requires.txt +scrappeycom.egg-info/top_level.txt \ No newline at end of file diff --git a/scrappeycom.egg-info/dependency_links.txt b/scrappeycom.egg-info/dependency_links.txt new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/scrappeycom.egg-info/dependency_links.txt @@ -0,0 +1 @@ + diff --git a/scrappeycom.egg-info/requires.txt b/scrappeycom.egg-info/requires.txt new file mode 100644 index 0000000..f229360 --- /dev/null +++ b/scrappeycom.egg-info/requires.txt @@ -0,0 +1 @@ +requests diff --git a/scrappeycom.egg-info/top_level.txt b/scrappeycom.egg-info/top_level.txt new file mode 100644 index 0000000..df274a5 --- /dev/null +++ b/scrappeycom.egg-info/top_level.txt @@ -0,0 +1 @@ +scrappeycom diff --git a/scrappey.py b/scrappeycom/scrappey.py similarity index 100% rename from scrappey.py rename to scrappeycom/scrappey.py diff --git a/test.py b/scrappeycom/test.py similarity index 100% rename from test.py rename to scrappeycom/test.py diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..9e2d610 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,4 @@ + +# Inside of setup.cfg +[metadata] +description-file = README.md \ No newline at end of file diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..70838f4 --- /dev/null +++ b/setup.py @@ -0,0 +1,26 @@ +from distutils.core import setup +setup( + name = 'scrappeycom', # How you named your package folder (MyLib) + packages = ['scrappeycom'], # Chose the same as "name" + version = '0.2', # Start with a small number and increase it with every change you make + license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository + description = 'An API wrapper for Scrappey.com written in Python (cloudflare bypass & solver)', # Give a short description about your library + author = 'dormic97', # Type in your name + author_email = 'crozz-boy@hotmail.com', # Type in your E-Mail + url = 'https://github.com/pim97/scrappey-wrapper-python', # Provide either the link to your github or to your website + download_url = 'https://github.com/pim97/scrappey-wrapper-python/archive/refs/tags/v_01.tar.gz', # I explain this later on + keywords = ["captcha", "shape", "web-scraping", "data-extraction", "akamai", "captcha-solver", "incapsula", "queue-it", "scraping-framework", "datadome", "scraping-tool", "cloudflare-bypass", "web-scraping-solution", "scraping-library", "cloudflare-anti-bot", "scraping-service", "web-data-extraction", "anti-bot-api", "perimetex"], # Keywords that define your package best + install_requires=[ # I get to this in a second + 'requests', + ], + classifiers=[ + 'Development Status :: 5 - Production/Stable', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package + 'Intended Audience :: Developers', # Define that your audience are developers + 'Topic :: Software Development :: Build Tools', + 'License :: OSI Approved :: MIT License', # Again, pick a license + 'Programming Language :: Python :: 3', #Specify which pyhton versions that you want to support + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + ], +) \ No newline at end of file