#!/usr/bin/python3
import argparse
import base64
import html.parser
import os
import os.path
import re
import sys
from urllib.parse import urlparse
from urllib.request import urlopen
class UrlDuplicateError(Exception): pass
URLDUP = re.compile(r'^$')
class TitleParser(html.parser.HTMLParser):
def __init__(self, *args, **kwargs):
html.parser.HTMLParser.__init__(self, *args, **kwargs)
self.images = set()
self.css = set()
def handle_starttag(self, name, attribs):
if name == 'img':
for attr, value in attribs:
if attr == 'src':
self.images.add(value)
elif name == 'title':
titletag_start = self.rawdata.index('
', titletag_start) + 1
title_end = self.rawdata.index('', title_start)
self.title = self.rawdata[title_start:title_end]
elif name == 'link':
attr_dict = dict(attribs)
if attr_dict.get('rel') == 'stylesheet':
self.css.add(attr_dict['href'])
def get_text(url, content='text/html'):
u = urlopen(url)
if u.status != 200:
raise RuntimeError('Incorrect HTTP status for %s' % url)
ctype = u.headers.get('content-type')
if ctype is None:
raise RuntimeError('None content type for %s' % url)
if not ctype.startswith(content):
raise RuntimeError('Incorrect content-type for %s: %s' % (url, ctype))
encoding = ctype.split(';')[1].split('=')[1].lower()
data = u.read()
page = data.decode(encoding)
return page
def embedded_image(url):
'''Download content from URL and return bytes if target is image'''
u = urlopen(url)
if u.getcode() != 200:
raise RuntimeError('Incorrect status for %s' % url)
ctype = u.headers.get('Content-Type')
data = u.read()
b64pict = base64.b64encode(data).decode()
return 'data:%s;base64,%s' % (ctype, b64pict)
def embed_pictures(page, pict_urls, base_url=None):
for url in pict_urls:
print('New picture: %s' % url)
try:
page = page.replace(
url, embedded_image(complete_url(url, base_url)))
except (ValueError, ConnectionRefusedError):
pass
return page
def embed_css(page, css_urls, base_url=None):
for url in css_urls:
if not url:
continue
print('New CSS: %s' % url)
css_start = page.rindex('<', 0, page.index(url))
css_end = page.index('>', css_start) + 1
css_tag = (''
% get_text(complete_url(url, base_url), 'text/css'))
page = page[:css_start] + css_tag + page[css_end:]
return page
def url_duplicate(url):
for htmlfile in os.listdir():
if not htmlfile.endswith('.html'):
continue
with open(htmlfile) as h:
h_url = h.readline()
if url in URLDUP.findall(h_url):
raise UrlDuplicateError(
'URL is already saved in file "%s"' % htmlfile)
def write_file(page, title, comment=None):
write_inc = lambda i: '_%d' % i if i > 1 else ''
inc = 0
while True:
inc += 1
fname = ' '.join(title.replace('/', '_').split()) + write_inc(inc) + '.html'
if not os.path.exists(fname):
break
with open(fname, 'x', newline='\n') as a_file:
print('Saving in file "%s"' % fname)
if comment:
a_file.write('\n' % comment)
a_file.write(page)
def complete_url(url, base_url):
base_up = urlparse(base_url)
if base_url is not None:
up = urlparse(url)
if not up.netloc:
url = base_up.scheme + '://' + base_up.netloc + url
return url
def main():
parser = argparse.ArgumentParser(
description='Nevernote - download pages locally.')
parser.add_argument('urls', metavar='URL', type=str, nargs='+',
help='URL of page to download')
args = parser.parse_args()
for url in args.urls:
try:
url_duplicate(url)
except UrlDuplicateError as e:
print(e)
continue
page = get_text(url)
parser = TitleParser(strict=False)
parser.feed(page)
page = embed_pictures(page, parser.images, base_url=url)
page = embed_css(page, parser.css, base_url=url)
write_file(page, parser.title, comment=url)
if __name__ == '__main__':
sys.exit(main())