Skip to content

Commit 38a7853

Browse files
committed
*mumbles about rst...*
1 parent fe886dd commit 38a7853

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

README.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Usage
1818
The only argument you need to worry about specifying is a (major and minor) version number:
1919

2020
::
21+
2122
>>> from stdlib_list import short_versions
2223
>>> short_versions
2324
['2.6', '2.7', '3.2', '3.3', '3.4']
@@ -33,6 +34,7 @@ Or, if you prefer, an exact version of one of the standard library pages that I
3334
With that in mind, here's how you can grab a list of standard libraries:
3435

3536
::
37+
3638
>>> from stdlib_list import stdlib_list
3739
>>> libraries = stdlib_list("2.7")
3840
>>> libraries[:10]
@@ -44,11 +46,13 @@ Installation
4446
The easy way is via ``pip``:
4547

4648
::
49+
4750
pip install stdlib_list
4851

4952
The hard way is to clone this repository, go into the directory into which you cloned this repo, and do a
5053

5154
::
55+
5256
python setup.py install
5357

5458

@@ -65,6 +69,7 @@ The Scraper
6569
You shouldn't need to fiddle around with the scraper, but in case you want to (or in case the Python Software Foundation decides to change the page layout of the standard library TOC page), just do:
6670

6771
::
72+
6873
from stdlib_list import scraper
6974
scraper.scrape("2.7") # Scrape for 2.7 only (for debugging, mainly)
7075
scraper.scrape() # Scrape for all versions listed above.

stdlib_list/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.0.1"
1+
__version__ = "0.0.2"

0 commit comments

Comments
 (0)