|
1 | | -__pycache__ |
2 | | -# Created by https://www.toptal.com/developers/gitignore/api/linux,macos,python,venv |
3 | | -# Edit at https://www.toptal.com/developers/gitignore?templates=linux,macos,python,venv |
4 | | - |
5 | | -### Linux ### |
6 | | -*~ |
7 | | - |
8 | | -# temporary files which can be created if a process still has a handle open of a deleted file |
9 | | -.fuse_hidden* |
10 | | - |
11 | | -# KDE directory preferences |
12 | | -.directory |
13 | | - |
14 | | -# Linux trash folder which might appear on any partition or disk |
15 | | -.Trash-* |
16 | | - |
17 | | -# .nfs files are created when an open file is removed but is still being accessed |
18 | | -.nfs* |
19 | | - |
20 | | -### macOS ### |
21 | | -# General |
22 | | -.DS_Store |
23 | | -.AppleDouble |
24 | | -.LSOverride |
25 | | - |
26 | | -# Icon must end with two \r |
27 | | -Icon |
28 | | - |
29 | | - |
30 | | -# Thumbnails |
31 | | -._* |
32 | | - |
33 | | -# Files that might appear in the root of a volume |
34 | | -.DocumentRevisions-V100 |
35 | | -.fseventsd |
36 | | -.Spotlight-V100 |
37 | | -.TemporaryItems |
38 | | -.Trashes |
39 | | -.VolumeIcon.icns |
40 | | -.com.apple.timemachine.donotpresent |
41 | | - |
42 | | -# Directories potentially created on remote AFP share |
43 | | -.AppleDB |
44 | | -.AppleDesktop |
45 | | -Network Trash Folder |
46 | | -Temporary Items |
47 | | -.apdisk |
48 | | - |
49 | | -### Python ### |
50 | | -# Byte-compiled / optimized / DLL files |
51 | | -__pycache__/ |
52 | | -*.py[cod] |
53 | | -*$py.class |
54 | | - |
55 | | -# C extensions |
56 | | -*.so |
57 | | - |
58 | | -# Distribution / packaging |
59 | | -.Python |
60 | | -build/ |
61 | | -develop-eggs/ |
62 | | -dist/ |
63 | | -downloads/ |
64 | | -eggs/ |
65 | | -.eggs/ |
66 | | -lib/ |
67 | | -lib64/ |
68 | | -parts/ |
69 | | -sdist/ |
70 | | -var/ |
71 | | -wheels/ |
72 | | -share/python-wheels/ |
73 | | -*.egg-info/ |
74 | | -.installed.cfg |
75 | | -*.egg |
76 | | -MANIFEST |
77 | | - |
78 | | -# PyInstaller |
79 | | -# Usually these files are written by a python script from a template |
80 | | -# before PyInstaller builds the exe, so as to inject date/other infos into it. |
81 | | -*.manifest |
82 | | -*.spec |
83 | | - |
84 | | -# Installer logs |
85 | | -pip-log.txt |
86 | | -pip-delete-this-directory.txt |
87 | | - |
88 | | -# Unit test / coverage reports |
89 | | -htmlcov/ |
90 | | -.tox/ |
91 | | -.nox/ |
92 | | -.coverage |
93 | | -.coverage.* |
94 | | -.cache |
95 | | -nosetests.xml |
96 | | -coverage.xml |
97 | | -*.cover |
98 | | -*.py,cover |
99 | | -.hypothesis/ |
| 1 | +.venv/ |
100 | 2 | .pytest_cache/ |
101 | | -cover/ |
102 | | - |
103 | | -# Translations |
104 | | -*.mo |
105 | | -*.pot |
106 | | - |
107 | | -# Django stuff: |
108 | | -*.log |
109 | | -local_settings.py |
110 | | -db.sqlite3 |
111 | | -db.sqlite3-journal |
112 | | - |
113 | | -# Flask stuff: |
114 | | -instance/ |
115 | | -.webassets-cache |
116 | | - |
117 | | -# Scrapy stuff: |
118 | | -.scrapy |
119 | | - |
120 | | -# Sphinx documentation |
121 | | -docs/_build/ |
122 | | - |
123 | | -# PyBuilder |
124 | | -.pybuilder/ |
125 | | -target/ |
126 | | - |
127 | | -# Jupyter Notebook |
128 | | -.ipynb_checkpoints |
129 | | - |
130 | | -# IPython |
131 | | -profile_default/ |
132 | | -ipython_config.py |
133 | | - |
134 | | -# pyenv |
135 | | -# For a library or package, you might want to ignore these files since the code is |
136 | | -# intended to run in multiple environments; otherwise, check them in: |
137 | | -# .python-version |
138 | | - |
139 | | -# pipenv |
140 | | -# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. |
141 | | -# However, in case of collaboration, if having platform-specific dependencies or dependencies |
142 | | -# having no cross-platform support, pipenv may install dependencies that don't work, or not |
143 | | -# install all needed dependencies. |
144 | | -#Pipfile.lock |
145 | | - |
146 | | -# poetry |
147 | | -# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. |
148 | | -# This is especially recommended for binary packages to ensure reproducibility, and is more |
149 | | -# commonly ignored for libraries. |
150 | | -# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control |
151 | | -#poetry.lock |
152 | | - |
153 | | -# PEP 582; used by e.g. github.com/David-OConnor/pyflow |
154 | | -__pypackages__/ |
155 | | - |
156 | | -# Celery stuff |
157 | | -celerybeat-schedule |
158 | | -celerybeat.pid |
159 | | - |
160 | | -# SageMath parsed files |
161 | | -*.sage.py |
162 | | - |
163 | | -# Environments |
164 | | -.env |
165 | | -.venv |
166 | | -env/ |
167 | | -venv/ |
168 | | -ENV/ |
169 | | -env.bak/ |
170 | | -venv.bak/ |
171 | | - |
172 | | -# Spyder project settings |
173 | | -.spyderproject |
174 | | -.spyproject |
175 | | - |
176 | | -# Rope project settings |
177 | | -.ropeproject |
178 | | - |
179 | | -# mkdocs documentation |
180 | | -/site |
181 | | - |
182 | | -# mypy |
183 | | -.mypy_cache/ |
184 | | -.dmypy.json |
185 | | -dmypy.json |
186 | | - |
187 | | -# Pyre type checker |
188 | | -.pyre/ |
189 | | - |
190 | | -# pytype static type analyzer |
191 | | -.pytype/ |
192 | | - |
193 | | -# Cython debug symbols |
194 | | -cython_debug/ |
195 | | - |
196 | | -# PyCharm |
197 | | -# JetBrains specific template is maintainted in a separate JetBrains.gitignore that can |
198 | | -# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore |
199 | | -# and can be added to the global gitignore or merged into this file. For a more nuclear |
200 | | -# option (not recommended) you can uncomment the following to ignore the entire idea folder. |
201 | | -#.idea/ |
202 | | - |
203 | | -### venv ### |
204 | | -# Virtualenv |
205 | | -# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/ |
206 | | -[Bb]in |
207 | | -[Ii]nclude |
208 | | -[Ll]ib |
209 | | -[Ll]ib64 |
210 | | -[Ll]ocal |
211 | | -[Ss]cripts |
212 | | -pyvenv.cfg |
213 | | -pip-selfcheck.json |
214 | | - |
215 | | -# End of https://www.toptal.com/developers/gitignore/api/linux,macos,python,venv |
| 3 | +__pycache__/ |
| 4 | +*.pyc |
0 commit comments