Skip to content

Commit

Permalink
0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
pim97 committed Jun 20, 2023
1 parent eb27918 commit 74f77f1
Show file tree
Hide file tree
Showing 4 changed files with 90 additions and 4 deletions.
Binary file added dist/scrappeycom-0.3.2.tar.gz
Binary file not shown.
Binary file removed dist/scrappeycom-0.3.tar.gz
Binary file not shown.
84 changes: 82 additions & 2 deletions scrappeycom.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Metadata-Version: 2.1
Name: scrappeycom
Version: 0.3
Version: 0.3.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_02.tar.gz
Download-URL: https://github.com/pim97/scrappey-wrapper-python/releases/tag/v_03
Author: dormic97
Author-email: [email protected]
License: MIT
Expand All @@ -16,4 +16,84 @@ Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# 🤖 Scrappey Wrapper - Data Extraction Made Easy

Introducing Scrappey, your comprehensive website scraping solution provided by Scrappey.com. With Scrappey's powerful and user-friendly API, you can effortlessly retrieve data from websites, including those protected by Cloudflare. Join Scrappey today and revolutionize your data extraction process. 🚀

**Disclaimer: Please ensure that your web scraping activities comply with the website's terms of service and legal regulations. Scrappey is not responsible for any misuse or unethical use of the library. Use it responsibly and respect the website's policies.**

Website: https://scrappey.com/

## Topics

- [Installation](#installation)
- [Usage](#usage)
- [Example](#example)
- [License](#license)

## Installation

Use pip to install the Scrappey library. 💻

```shell
pip install scrappeycom
```

## Usage

Import the Scrappey library in your code. 📦

```python
from scrappeycom.scrappey import Scrappey
```

Create an instance of Scrappey by providing your Scrappey API key. 🔑

```python
api_key = 'YOUR_API_KEY'
scrappey_instance = scrappey.Scrappey(api_key)
```

### Example

Here's an example of how to use Scrappey. 🚀

```python
from scrappeycom.scrappey import Scrappey

scrappey = Scrappey('API_KEY')

def run_test():
try:
session = scrappey.create_session()
print(session)

get_request_result = scrappey.get_request('https://httpbin.rs/get', session['session'])
print('GET Request Result:', get_request_result)

post_data = {'username': 'user123', 'password': 'pass456'}
post_request_result = scrappey.post_request('https://httpbin.rs/post', post_data, session['session'])
print('POST Request Result:', post_request_result)

scrappey.destroy_session(session['session'])
print('Session destroyed.')
except Exception as error:
print(error)

run_test()
```

For more information, please visit the [official Scrappey documentation](https://wiki.scrappey.com/getting-started). 📚

## License

This project is licensed under the MIT License.

## Additional Tags

cloudflare anti bot bypass, cloudflare solver, scraper, scraping, cloudflare scraper, cloudflare turnstile solver, turnstile solver, data extraction, web scraping, website scraping, data scraping, scraping tool, API scraping, scraping solution, web data extraction, website data extraction, web scraping library, website scraping library, cloudflare bypass, scraping API, web scraping API, cloudflare protection, data scraping tool, scraping service, cloudflare challenge solver, web scraping solution, web scraping service, cloudflare scraping, cloudflare bot protection, scraping framework, scraping library, cloudflare bypass tool, cloudflare anti-bot, cloudflare protection bypass, cloudflare solver tool, web scraping tool, data extraction library, website scraping tool, cloudflare turnstile bypass, cloudflare anti-bot solver, turnstile solver tool, cloudflare scraping solution, website data scraper, cloudflare challenge bypass, web scraping framework, cloudflare challenge solver tool, web data scraping, data scraper, scraping data from websites, SEO, data mining,

data harvesting, data crawling, web scraping software, website scraping tool, web scraping framework, data extraction tool, web data scraper, data scraping service, scraping automation, scraping tutorial, scraping code, scraping techniques, scraping best practices, scraping scripts, scraping tutorial, scraping examples, scraping challenges, scraping tricks, scraping tips, scraping tricks, scraping strategies, scraping methods, cloudflare protection bypass, cloudflare security bypass, web scraping Python, web scraping JavaScript, web scraping PHP, web scraping Ruby, web scraping Java, web scraping C#, web scraping Node.js, web scraping BeautifulSoup, web scraping Selenium, web scraping Scrapy, web scraping Puppeteer, web scraping requests, web scraping headless browser, web scraping dynamic content, web scraping AJAX, web scraping pagination, web scraping authentication, web scraping cookies, web scraping session management, web scraping data parsing, web scraping data cleaning, web scraping data analysis, web scraping data visualization, web scraping legal issues, web scraping ethics, web scraping compliance, web scraping regulations, web scraping IP blocking, web scraping anti-scraping measures, web scraping proxy, web scraping CAPTCHA solving, web scraping IP rotation, web scraping rate limiting, web scraping data privacy, web scraping consent, web scraping terms of service, web scraping robots.txt, web scraping data storage, web scraping database integration, web scraping data integration, web scraping API integration, web scraping data export, web scraping data processing, web scraping data transformation, web scraping data enrichment, web scraping data validation, web scraping error handling, web scraping scalability, web scraping performance optimization, web scraping distributed scraping, web scraping cloud-based scraping, web scraping serverless scraping.
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
from distutils.core import setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()

setup(
name = 'scrappeycom', # How you named your package folder (MyLib)
packages = ['scrappeycom'], # Chose the same as "name"
version = '0.3', # Start with a small number and increase it with every change you make
version = '0.3.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_02.tar.gz', # I explain this later on
download_url = 'https://github.com/pim97/scrappey-wrapper-python/releases/tag/v_03', # 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
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[ # I get to this in a second
'requests',
],
Expand Down

0 comments on commit 74f77f1

Please sign in to comment.