Skip to content

Commit 00bfab4

Browse files
committed
v2
1 parent c5a9a7a commit 00bfab4

13 files changed

+64
-0
lines changed

LICENSE renamed to LICENSE.txt

File renamed without changes.

__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from scrappeycom.scrappey import Scrappey

dist/scrappeycom-0.1.tar.gz

4.93 KB
Binary file not shown.

dist/scrappeycom-0.2.tar.gz

4.93 KB
Binary file not shown.

scrappeycom.egg-info/PKG-INFO

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Metadata-Version: 2.1
2+
Name: scrappeycom
3+
Version: 0.2
4+
Summary: An API wrapper for Scrappey.com written in Python (cloudflare bypass & solver)
5+
Home-page: https://github.com/pim97/scrappey-wrapper-python
6+
Download-URL: https://github.com/pim97/scrappey-wrapper-python/archive/refs/tags/v_01.tar.gz
7+
Author: dormic97
8+
Author-email: [email protected]
9+
License: MIT
10+
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
11+
Classifier: Development Status :: 5 - Production/Stable
12+
Classifier: Intended Audience :: Developers
13+
Classifier: Topic :: Software Development :: Build Tools
14+
Classifier: License :: OSI Approved :: MIT License
15+
Classifier: Programming Language :: Python :: 3
16+
Classifier: Programming Language :: Python :: 3.4
17+
Classifier: Programming Language :: Python :: 3.5
18+
Classifier: Programming Language :: Python :: 3.6
19+
License-File: LICENSE.txt

scrappeycom.egg-info/SOURCES.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
LICENSE.txt
2+
README.md
3+
setup.cfg
4+
setup.py
5+
scrappeycom/scrappey.py
6+
scrappeycom/test.py
7+
scrappeycom.egg-info/PKG-INFO
8+
scrappeycom.egg-info/SOURCES.txt
9+
scrappeycom.egg-info/dependency_links.txt
10+
scrappeycom.egg-info/requires.txt
11+
scrappeycom.egg-info/top_level.txt
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

scrappeycom.egg-info/requires.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
requests

scrappeycom.egg-info/top_level.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
scrappeycom
File renamed without changes.
File renamed without changes.

setup.cfg

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
# Inside of setup.cfg
3+
[metadata]
4+
description-file = README.md

setup.py

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
from distutils.core import setup
2+
setup(
3+
name = 'scrappeycom', # How you named your package folder (MyLib)
4+
packages = ['scrappeycom'], # Chose the same as "name"
5+
version = '0.2', # Start with a small number and increase it with every change you make
6+
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
7+
description = 'An API wrapper for Scrappey.com written in Python (cloudflare bypass & solver)', # Give a short description about your library
8+
author = 'dormic97', # Type in your name
9+
author_email = '[email protected]', # Type in your E-Mail
10+
url = 'https://github.com/pim97/scrappey-wrapper-python', # Provide either the link to your github or to your website
11+
download_url = 'https://github.com/pim97/scrappey-wrapper-python/archive/refs/tags/v_01.tar.gz', # I explain this later on
12+
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
13+
install_requires=[ # I get to this in a second
14+
'requests',
15+
],
16+
classifiers=[
17+
'Development Status :: 5 - Production/Stable', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
18+
'Intended Audience :: Developers', # Define that your audience are developers
19+
'Topic :: Software Development :: Build Tools',
20+
'License :: OSI Approved :: MIT License', # Again, pick a license
21+
'Programming Language :: Python :: 3', #Specify which pyhton versions that you want to support
22+
'Programming Language :: Python :: 3.4',
23+
'Programming Language :: Python :: 3.5',
24+
'Programming Language :: Python :: 3.6',
25+
],
26+
)

0 commit comments

Comments
 (0)