Skip to content

Commit 9c622d9

Browse files
committed
v3
1 parent 00bfab4 commit 9c622d9

File tree

7 files changed

+8
-10
lines changed

7 files changed

+8
-10
lines changed

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.

dist/scrappeycom-0.3.tar.gz

4.97 KB
Binary file not shown.

readme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,20 +41,20 @@ scrappey_instance = scrappey.Scrappey(api_key)
4141
Here's an example of how to use Scrappey. 🚀
4242

4343
```python
44-
from scrappey import Scrappey
44+
from scrappeycom.scrappey import Scrappey
4545

46-
scrappey = Scrappey('YOUR_API_KEY')
46+
scrappey = Scrappey('API_KEY')
4747

4848
def run_test():
4949
try:
5050
session = scrappey.create_session()
5151
print(session)
5252

53-
get_request_result = scrappey.get_request('https://reqres.in/api/users', session['session'])
53+
get_request_result = scrappey.get_request('https://httpbin.rs/get', session['session'])
5454
print('GET Request Result:', get_request_result)
5555

5656
post_data = {'username': 'user123', 'password': 'pass456'}
57-
post_request_result = scrappey.post_request('https://reqres.in/api/users', post_data, session['session'])
57+
post_request_result = scrappey.post_request('https://httpbin.rs/post', post_data, session['session'])
5858
print('POST Request Result:', post_request_result)
5959

6060
scrappey.destroy_session(session['session'])

scrappeycom.egg-info/PKG-INFO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
Metadata-Version: 2.1
22
Name: scrappeycom
3-
Version: 0.2
3+
Version: 0.3
44
Summary: An API wrapper for Scrappey.com written in Python (cloudflare bypass & solver)
55
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
6+
Download-URL: https://github.com/pim97/scrappey-wrapper-python/archive/refs/tags/v_02.tar.gz
77
Author: dormic97
88
Author-email: crozz-boy@hotmail.com
99
License: MIT

setup.cfg

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

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
setup(
33
name = 'scrappeycom', # How you named your package folder (MyLib)
44
packages = ['scrappeycom'], # Chose the same as "name"
5-
version = '0.2', # Start with a small number and increase it with every change you make
5+
version = '0.3', # Start with a small number and increase it with every change you make
66
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
77
description = 'An API wrapper for Scrappey.com written in Python (cloudflare bypass & solver)', # Give a short description about your library
88
author = 'dormic97', # Type in your name
99
author_email = 'crozz-boy@hotmail.com', # Type in your E-Mail
1010
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
11+
download_url = 'https://github.com/pim97/scrappey-wrapper-python/archive/refs/tags/v_02.tar.gz', # I explain this later on
1212
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
1313
install_requires=[ # I get to this in a second
1414
'requests',

0 commit comments

Comments
 (0)