Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Penguins-ShinyPy/.gitignore
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
83 lines (74 sloc)
879 Bytes
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
# Python | |
__pycache__/ | |
*.py[cod] | |
*$py.class | |
*.so | |
.Python | |
build/ | |
develop-eggs/ | |
dist/ | |
downloads/ | |
eggs/ | |
.eggs/ | |
lib/ | |
lib64/ | |
parts/ | |
sdist/ | |
var/ | |
wheels/ | |
*.egg-info/ | |
.installed.cfg | |
*.egg | |
# Virtual Environments | |
venv/ | |
env/ | |
ENV/ | |
.env | |
.venv | |
python-env/ | |
# Jupyter Notebooks | |
.ipynb_checkpoints | |
*/.ipynb_checkpoints/* | |
profile_default/ | |
ipython_config.py | |
# Data Science | |
*.pkl | |
*.h5 | |
*.model | |
*.joblib | |
*.pickle | |
*.parquet | |
*.feather | |
.Rproj.user | |
.Rhistory | |
.RData | |
# Large data files (consider using Git LFS instead) | |
*.tsv | |
*.xlsx | |
*.xls | |
# Uncomment if you want to ignore the penguins dataset | |
# *penguins*.csv | |
# PyShiny specific | |
rsconnect/ | |
.shiny/ | |
.shinylive/ | |
# OS specific files | |
.DS_Store | |
.DS_Store? | |
._* | |
.Spotlight-V100 | |
.Trashes | |
ehthumbs.db | |
Thumbs.db | |
# IDE specific files | |
.idea/ | |
.vscode/ | |
*.swp | |
*.swo | |
.spyderproject | |
.spyproject | |
.ropeproject | |
# Local configuration | |
config.ini | |
secrets.json | |
.env.local | |