Python wrapper for PhantomJS
Project description
PhantomJS wrapper in Python
Pre requisites
- phantomjs:
phantomjs
command line tool. - Python 3
Install
pip install phantomjs
Usage
Using with a custom phantomjs script:
from phantomjs import Phantom
phantom = Phantom()
conf = {
'url': 'http://example.com/', # Mandatory field
}
output = phantom.download_page(conf, js_path='/my/phantomjs/script/path')
In your phantomjs script, you can take the url as:
var system = require('system');
var json = JSON.parse(system.args[1]);
var url = json.url;
Using the default phantomjs script provided with this package:
from phantomjs import Phantom
phantom = Phantom()
conf = {
'url': 'http://example.com/', # Mandatory field
'output_type': 'html', # json for json
'min_wait': 1000, # 1 second
'max_wait': 30000, # 30 seconds
'selector': '', # CSS selector if there's any
'resource_timeout': 3000, # 3 seconds
'headers': {
"User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.72 Safari/537.36",
"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3",
"Sec-Fetch-Mode": "navigate",
'Sec-Fetch-Site': 'same-origin',
'Upgrade-Insecure-Requests': '1',
},
'cookies': [
{'name': '_Country', 'value': 'US', 'domain': '.google.com',},
{'name': '_Currency', 'value': 'USD', 'domain': '.google.com',},
],
'functions': [
'function(){window.location.replace("http://icanhazip.com/");}',
],
}
output = phantom.download_page(conf)
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
phantomjs-1.1.7.tar.gz
(6.5 kB
view hashes)
Built Distribution
Close
Hashes for phantomjs-1.1.7-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d0bf11b66be7a49e33effdb13da4f4c7f67435985b75a2e7b4051496f8db13b4 |
|
MD5 | bc79764cad5b1cb7e2c4b7bfe28c668a |
|
BLAKE2b-256 | 91d20e006a5af6b791f4424d80e2a840df6b5d2aa6e9b3812fa2f1f19ca73c43 |