Python wrapper for Prompt API's Scraper API
Project description
Prompt API - Scraper API - Python Package
pa-scraper
is a python wrapper for scraper api with few
more extra cream and sugar.
Requirements
- You need to signup for Prompt API
- You need to subscribe scraper api, test drive is free!!!
- You need to set
PROMPTAPI_TOKEN
environment variable after subscription.
then;
$ pip install pa-scraper
Example Usage
Examples can be found here.
from scraper import Scraper
url = 'https://pypi.org/classifiers/'
scraper = Scraper(url)
response = scraper.get()
if response.get('error', None):
# response['error'] returns error message
# response['status'] returns http status code
# {'error': 'Not Found', 'status': 404}
print(response)
else:
result = response['result']
print(result['headers']) # returns response headers
print(result['data']) # returns fetched html
print(result['url']) # returns fetched url
print(response['status']) # returns http status code
save_result = scraper.save('/tmp/my-html.html') # save to file
if save_result.get('error', None):
# we have save error
pass
else:
print(save_result) # contains saved file path and file size
# {'file': '/tmp/my-html.html', 'size': 321322}
TODO
- Add
xpath
extractor.
License
This project is licensed under MIT
Contributer(s)
- Prompt API - Creator, maintainer
Contribute
All PR’s are welcome!
fork
(https://github.com/promptapi/scraper-py/fork)- Create your
branch
(git checkout -b my-feature
) commit
yours (git commit -am 'Add awesome features...'
)push
yourbranch
(git push origin my-feature
)- Than create a new Pull Request!
This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pa-scraper-0.1.1.tar.gz
(4.5 kB
view details)
Built Distribution
File details
Details for the file pa-scraper-0.1.1.tar.gz
.
File metadata
- Download URL: pa-scraper-0.1.1.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
f0a8498b7bb84047ad11e8671cc86419142f20062fab0df22ca3bf7767142fbf
|
|
MD5 |
34f9c87693b2a494db111c0293df5718
|
|
BLAKE2b-256 |
6757dc739f76cf24670d6dd7feca63f304f0a87e883e8b15d81253f67ee3226e
|
File details
Details for the file pa_scraper-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: pa_scraper-0.1.1-py3-none-any.whl
- Upload date:
- Size: 5.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
2a5ba1165579a2bf6cf4cdd2fa9cfc5f446cf57acecbf5d342578189b5e7d489
|
|
MD5 |
b61db05c719e81cfcf1fd8b63b2335b0
|
|
BLAKE2b-256 |
42a4e8bfc061995e023236ef7d539369fef743948e16f7fe987d24b0fb2934c2
|