Last active
December 30, 2020 19:05
-
-
Save tombohub/37fa4a4f2986c253a0b11a545c9ad89c to your computer and use it in GitHub Desktop.
Good python packages to start a project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# environment | |
pip install pipenv | |
# development | |
pipenv install devtool | |
# better REPL | |
pipenv install ipython | |
# reading .env variables | |
pipenv install python-decouple | |
# better console | |
pipenv install rich | |
# progress bar | |
pipenv install tqdm | |
# console questions | |
pipenv install questionary | |
# pretty errors | |
pipenv install pretty_errors |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment