Add basic run instructions to docstring
This commit is contained in:
parent
a024697369
commit
ea2669eddf
1 changed files with 16 additions and 0 deletions
16
pypi-list.py
16
pypi-list.py
|
|
@ -1,3 +1,19 @@
|
|||
"""
|
||||
pypi-list
|
||||
|
||||
Listing python packages from pypi, and finding available single word packages.
|
||||
|
||||
|
||||
## Run the Pipeline
|
||||
|
||||
``` bash
|
||||
# Run with existing package data
|
||||
python pypi-list.py
|
||||
|
||||
# Full run
|
||||
python pypi-list.py --full
|
||||
```
|
||||
"""
|
||||
import logging
|
||||
|
||||
import requests
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue