[READ-ONLY] Mirror of https://github.com/shuuji3/competitive-programming. 馃洬 Codes submitted to competitive programming platforms
aizu-online-jadge
aoj
atcoder
hackerrank
leetcode
2.1 kB
142 lines
1# Created by .ignore support plugin (hsz.mobi)
2### Python template
3# Byte-compiled / optimized / DLL files
4__pycache__/
5*.py[cod]
6*$py.class
7
8# C extensions
9*.so
10
11# Distribution / packaging
12.Python
13build/
14develop-eggs/
15dist/
16downloads/
17eggs/
18.eggs/
19lib/
20lib64/
21parts/
22sdist/
23var/
24wheels/
25pip-wheel-metadata/
26share/python-wheels/
27*.egg-info/
28.installed.cfg
29*.egg
30MANIFEST
31
32# PyInstaller
33# Usually these files are written by a python script from a template
34# before PyInstaller builds the exe, so as to inject date/other infos into it.
35*.manifest
36*.spec
37
38# Installer logs
39pip-log.txt
40pip-delete-this-directory.txt
41
42# Unit test / coverage reports
43htmlcov/
44.tox/
45.nox/
46.coverage
47.coverage.*
48.cache
49nosetests.xml
50coverage.xml
51*.cover
52*.py,cover
53.hypothesis/
54.pytest_cache/
55cover/
56
57# Translations
58*.mo
59*.pot
60
61# Django stuff:
62*.log
63local_settings.py
64db.sqlite3
65db.sqlite3-journal
66
67# Flask stuff:
68instance/
69.webassets-cache
70
71# Scrapy stuff:
72.scrapy
73
74# Sphinx documentation
75docs/_build/
76
77# PyBuilder
78.pybuilder/
79target/
80
81# Jupyter Notebook
82.ipynb_checkpoints
83
84# IPython
85profile_default/
86ipython_config.py
87
88# pyenv
89# For a library or package, you might want to ignore these files since the code is
90# intended to run in multiple environments; otherwise, check them in:
91# .python-version
92
93# pipenv
94# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
95# However, in case of collaboration, if having platform-specific dependencies or dependencies
96# having no cross-platform support, pipenv may install dependencies that don't work, or not
97# install all needed dependencies.
98#Pipfile.lock
99
100# PEP 582; used by e.g. github.com/David-OConnor/pyflow
101__pypackages__/
102
103# Celery stuff
104celerybeat-schedule
105celerybeat.pid
106
107# SageMath parsed files
108*.sage.py
109
110# Environments
111.env
112.venv
113env/
114venv/
115ENV/
116env.bak/
117venv.bak/
118
119# Spyder project settings
120.spyderproject
121.spyproject
122
123# Rope project settings
124.ropeproject
125
126# mkdocs documentation
127/site
128
129# mypy
130.mypy_cache/
131.dmypy.json
132dmypy.json
133
134# Pyre type checker
135.pyre/
136
137# pytype static type analyzer
138.pytype/
139
140# Cython debug symbols
141cython_debug/
142