anthonyw12123 / 4chanwebscraper

A primitive web scraper using Python.
MIT License
0 stars 0 forks source link

Use argparse library for parsing command-line arguments #12

Closed cdsimpkins closed 8 years ago

cdsimpkins commented 8 years ago

argparse is a standard python library included at least since 2.7. It allows for the creation of self-documenting arguments and usage hints, as well as argument validation without you having to write lots of boiler-plate code.

Documentation

cdsimpkins commented 8 years ago

this is related to #1 and #2

anthonyw12123 commented 8 years ago

Implemented. This will be merged into the 1.1 branch for testing here in a bit.