Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Simple-Python-WordPress-Scraper/scraper.py
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
43 lines (38 sloc)
1.24 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from wordpress_xmlrpc import Client | |
from wordpress_xmlrpc.methods import posts | |
from wordpress_xmlrpc import Client, WordPressPost | |
from slugify import slugify | |
import requests | |
import os.path | |
from bs4 import BeautifulSoup | |
client = Client('http://local.wordpress.dev/xmlrpc.php', 'xmlrpc', 'password') | |
def getPage(url, filename): | |
if filename == '': | |
print "No File Name" | |
exit() | |
c = '' | |
if os.path.isfile('pages/'+filename): | |
print("Loading the data via the file.") | |
f = open('pages/'+filename, 'r') | |
c = f.read() | |
else: | |
print("Fetching the data via the URL.") | |
result = requests.get(url) | |
c = result.content | |
f = open('pages/'+filename,'w') | |
f.write(c) | |
f.close() | |
c = BeautifulSoup(c) | |
return c | |
html = getPage("http://news.ycombinator.com/", "page1.html") | |
rows = html.select('#hnmain > tr:nth-of-type(3) > td > table > tr'); | |
for row in rows: | |
if row.select('.title'): | |
link = row.select('td:nth-of-type(3) a') | |
print link[0].text | |
post = WordPressPost() | |
post.title = link[0].text | |
post.post_type = "post" | |
post.content = link[0].get('href') | |
post.post_status = "publish" | |
addpost = client.call(posts.NewPost(post)) |