Skip to content

Commit

Permalink
v2
Browse files Browse the repository at this point in the history
  • Loading branch information
pim97 committed Jun 20, 2023
1 parent c5a9a7a commit 00bfab4
Show file tree
Hide file tree
Showing 13 changed files with 64 additions and 0 deletions.
File renamed without changes.
1 change: 1 addition & 0 deletions __init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from scrappeycom.scrappey import Scrappey
Binary file added dist/scrappeycom-0.1.tar.gz
Binary file not shown.
Binary file added dist/scrappeycom-0.2.tar.gz
Binary file not shown.
19 changes: 19 additions & 0 deletions scrappeycom.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -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: [email protected]
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
11 changes: 11 additions & 0 deletions scrappeycom.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions scrappeycom.egg-info/dependency_links.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions scrappeycom.egg-info/requires.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
requests
1 change: 1 addition & 0 deletions scrappeycom.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
scrappeycom
File renamed without changes.
File renamed without changes.
4 changes: 4 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

# Inside of setup.cfg
[metadata]
description-file = README.md
26 changes: 26 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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 = '[email protected]', # 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',
],
)

0 comments on commit 00bfab4

Please sign in to comment.