Good python packages to start a project
This file contains 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