a module for polling urls and stats from homepages
Project description
pageone ====== a module for polling urls and stats from homepages
Install
pip install pageone
Test
Requires nose
nosetests
Usage
pageone does two things: extract article urls from a site’s homepage and also uses selenium and phantomjs to find the relative positions of these urls.
To get stats about the positions of links, use link_stats:
from pageone import PageOne
p = PageOne(url='http://www.propublica.org/')
# get stats about links positions
for link in p.link_stats():
print link
This will return a list of dictionaries that look like this:
{'bucket': 4,
'datetime': datetime.datetime(2014, 6, 7, 16, 6, 3, 533818),
'font_size': 13,
'has_img': 1,
'headline': u'',
'homepage': 'http://www.propublica.org/',
'img_area': 3969,
'img_height': 63,
'img_src': u'http://www.propublica.org/images/ngen/gypsy_image_medium/mpmh_victory_drive_140x140_130514_1.jpg',
'img_width': 63,
'url': u'http://www.propublica.org/article/protect-service-members-defense-department-plans-broad-ban-high-cost-loans',
'x': 61,
'x_bucket': 1,
'y': 730,
'y_bucket': 4}
To get simply get all of the article urls on a homepage, use articles:
from pageone import PageOne
p = PageOne(url='http://www.propublica.org/')
for article in p.articles():
print article
If you want to get article urls from other sites, use incl_external:
from pageone import PageOne
p = PageOne(url='http://www.propublica.org/')
for article in p.articles(incl_external=True):
print article
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
Built Distribution
File details
Details for the file pageone-0.0.5.tar.gz
.
File metadata
- Download URL: pageone-0.0.5.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4ced7630faf753fee60a9d41a447fd8d1d6f88d1eb8ff3b446678c7e72a5891c |
|
MD5 | 8d5a968e1c51983ac0206ad5aaf5b07a |
|
BLAKE2b-256 | ec160f201bf5b818201e8c7769703543bdcded284ab90fcc28b5416f365bb9e1 |
File details
Details for the file pageone-0.0.5.macosx-10.9-intel.exe
.
File metadata
- Download URL: pageone-0.0.5.macosx-10.9-intel.exe
- Upload date:
- Size: 69.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 231d1f6126d054be6a507257e158639bd4efb3392e41a7f91f864e919b140ead |
|
MD5 | 97e0677201c6ffd833b77cdeeb6103c3 |
|
BLAKE2b-256 | 1d05fb5277f0a459a67bf1d9a0bdcfb310e1774d73575c7f661ad641f994f40b |