python-edgar
python-edgar copied to clipboard
Run as module
Moves run.py to edgar/main.py so that you can invoke the script from the command-line using python -m edgar ...
To clarify one detail, installing module outside of our package is error-prone. When you pip install the package, you will end up with .../site-packages/run.py and .../site-packages/edgar/. run.py is likely to get overwritten by or overwrite another package's run.py if any other package violates their own encapsulation like this.