htmlgrab

A simple command line script to generate static web pages.


Keywords
python, html, grab
License
MIT
Install
pip install htmlgrab==0.0.3-alpha

Documentation

HTML Grab

HTML Grab is a simple command line script to generate static web pages.

Requirements

This script works with Python >= 2.6.

Installation

pip install htmlgrab

Usage

html-grab.py options.

Required arguments are: -u page url -d destionation root folder for your html

Optional arguments are: -i save index.html into a directory based on page slug -o omits a string from slug

eg.: $ html-grab.py -u https://github.com/blog/1113-akavache-is-now-open-source -d /Users/iepsen/ $ ls blog $ 1113-akavache-is-now-open-source.html

$ html-grab.py -u https://github.com/blog/1113-akavache-is-now-open-source -d /Users/iepsen/ -i True $ ls blog/1113-akavache-is-now-open-source $ index.html

Use html-grab.py -h for usage help.