Spaces:
Sleeping
Sleeping
NyanSwanAung23
commited on
Commit
·
d1bb6e7
1
Parent(s):
768a4c0
add gitignore
Browse files- .gitignore +407 -0
- examples/dummy.txt +4 -0
.gitignore
ADDED
@@ -0,0 +1,407 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Created by https://www.toptal.com/developers/gitignore/api/python,visualstudiocode,jupyternotebooks,pycharm,flask
|
2 |
+
# Edit at https://www.toptal.com/developers/gitignore?templates=python,visualstudiocode,jupyternotebooks,pycharm,flask
|
3 |
+
|
4 |
+
### Flask ###
|
5 |
+
instance/*
|
6 |
+
!instance/.gitignore
|
7 |
+
.webassets-cache
|
8 |
+
.env
|
9 |
+
|
10 |
+
.DS_Store
|
11 |
+
|
12 |
+
### Flask.Python Stack ###
|
13 |
+
# Byte-compiled / optimized / DLL files
|
14 |
+
__pycache__/
|
15 |
+
*.py[cod]
|
16 |
+
*$py.class
|
17 |
+
|
18 |
+
# C extensions
|
19 |
+
*.so
|
20 |
+
|
21 |
+
# Distribution / packaging
|
22 |
+
.Python
|
23 |
+
build/
|
24 |
+
develop-eggs/
|
25 |
+
dist/
|
26 |
+
downloads/
|
27 |
+
eggs/
|
28 |
+
.eggs/
|
29 |
+
lib/
|
30 |
+
lib64/
|
31 |
+
parts/
|
32 |
+
sdist/
|
33 |
+
var/
|
34 |
+
wheels/
|
35 |
+
share/python-wheels/
|
36 |
+
*.egg-info/
|
37 |
+
.installed.cfg
|
38 |
+
*.egg
|
39 |
+
MANIFEST
|
40 |
+
|
41 |
+
# PyInstaller
|
42 |
+
# Usually these files are written by a python script from a template
|
43 |
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
44 |
+
*.manifest
|
45 |
+
*.spec
|
46 |
+
|
47 |
+
# Installer logs
|
48 |
+
pip-log.txt
|
49 |
+
pip-delete-this-directory.txt
|
50 |
+
|
51 |
+
# Unit test / coverage reports
|
52 |
+
htmlcov/
|
53 |
+
.tox/
|
54 |
+
.nox/
|
55 |
+
.coverage
|
56 |
+
.coverage.*
|
57 |
+
.cache
|
58 |
+
nosetests.xml
|
59 |
+
coverage.xml
|
60 |
+
*.cover
|
61 |
+
*.py,cover
|
62 |
+
.hypothesis/
|
63 |
+
.pytest_cache/
|
64 |
+
cover/
|
65 |
+
|
66 |
+
# Translations
|
67 |
+
*.mo
|
68 |
+
*.pot
|
69 |
+
|
70 |
+
# Django stuff:
|
71 |
+
*.log
|
72 |
+
local_settings.py
|
73 |
+
db.sqlite3
|
74 |
+
db.sqlite3-journal
|
75 |
+
|
76 |
+
# Flask stuff:
|
77 |
+
instance/
|
78 |
+
|
79 |
+
# Scrapy stuff:
|
80 |
+
.scrapy
|
81 |
+
|
82 |
+
# Sphinx documentation
|
83 |
+
docs/_build/
|
84 |
+
|
85 |
+
# PyBuilder
|
86 |
+
.pybuilder/
|
87 |
+
target/
|
88 |
+
|
89 |
+
# Jupyter Notebook
|
90 |
+
.ipynb_checkpoints
|
91 |
+
|
92 |
+
# IPython
|
93 |
+
profile_default/
|
94 |
+
ipython_config.py
|
95 |
+
|
96 |
+
# pyenv
|
97 |
+
# For a library or package, you might want to ignore these files since the code is
|
98 |
+
# intended to run in multiple environments; otherwise, check them in:
|
99 |
+
# .python-version
|
100 |
+
|
101 |
+
# pipenv
|
102 |
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
103 |
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
104 |
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
105 |
+
# install all needed dependencies.
|
106 |
+
#Pipfile.lock
|
107 |
+
|
108 |
+
# poetry
|
109 |
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
110 |
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
111 |
+
# commonly ignored for libraries.
|
112 |
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
113 |
+
#poetry.lock
|
114 |
+
|
115 |
+
# pdm
|
116 |
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
117 |
+
#pdm.lock
|
118 |
+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
119 |
+
# in version control.
|
120 |
+
# https://pdm.fming.dev/#use-with-ide
|
121 |
+
.pdm.toml
|
122 |
+
|
123 |
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
124 |
+
__pypackages__/
|
125 |
+
|
126 |
+
# Celery stuff
|
127 |
+
celerybeat-schedule
|
128 |
+
celerybeat.pid
|
129 |
+
|
130 |
+
# SageMath parsed files
|
131 |
+
*.sage.py
|
132 |
+
|
133 |
+
# Environments
|
134 |
+
.venv
|
135 |
+
env/
|
136 |
+
venv/
|
137 |
+
ENV/
|
138 |
+
env.bak/
|
139 |
+
venv.bak/
|
140 |
+
|
141 |
+
# Spyder project settings
|
142 |
+
.spyderproject
|
143 |
+
.spyproject
|
144 |
+
|
145 |
+
# Rope project settings
|
146 |
+
.ropeproject
|
147 |
+
|
148 |
+
# mkdocs documentation
|
149 |
+
/site
|
150 |
+
|
151 |
+
# mypy
|
152 |
+
.mypy_cache/
|
153 |
+
.dmypy.json
|
154 |
+
dmypy.json
|
155 |
+
|
156 |
+
# Pyre type checker
|
157 |
+
.pyre/
|
158 |
+
|
159 |
+
# pytype static type analyzer
|
160 |
+
.pytype/
|
161 |
+
|
162 |
+
# Cython debug symbols
|
163 |
+
cython_debug/
|
164 |
+
|
165 |
+
# PyCharm
|
166 |
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
167 |
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
168 |
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
169 |
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
170 |
+
#.idea/
|
171 |
+
|
172 |
+
### JupyterNotebooks ###
|
173 |
+
# gitignore template for Jupyter Notebooks
|
174 |
+
# website: http://jupyter.org/
|
175 |
+
|
176 |
+
*/.ipynb_checkpoints/*
|
177 |
+
|
178 |
+
# IPython
|
179 |
+
|
180 |
+
# Remove previous ipynb_checkpoints
|
181 |
+
# git rm -r .ipynb_checkpoints/
|
182 |
+
|
183 |
+
### PyCharm ###
|
184 |
+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
|
185 |
+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
186 |
+
|
187 |
+
# User-specific stuff
|
188 |
+
.idea/**/workspace.xml
|
189 |
+
.idea/**/tasks.xml
|
190 |
+
.idea/**/usage.statistics.xml
|
191 |
+
.idea/**/dictionaries
|
192 |
+
.idea/**/shelf
|
193 |
+
|
194 |
+
# AWS User-specific
|
195 |
+
.idea/**/aws.xml
|
196 |
+
|
197 |
+
# Generated files
|
198 |
+
.idea/**/contentModel.xml
|
199 |
+
|
200 |
+
# Sensitive or high-churn files
|
201 |
+
.idea/**/dataSources/
|
202 |
+
.idea/**/dataSources.ids
|
203 |
+
.idea/**/dataSources.local.xml
|
204 |
+
.idea/**/sqlDataSources.xml
|
205 |
+
.idea/**/dynamic.xml
|
206 |
+
.idea/**/uiDesigner.xml
|
207 |
+
.idea/**/dbnavigator.xml
|
208 |
+
|
209 |
+
# Gradle
|
210 |
+
.idea/**/gradle.xml
|
211 |
+
.idea/**/libraries
|
212 |
+
|
213 |
+
# Gradle and Maven with auto-import
|
214 |
+
# When using Gradle or Maven with auto-import, you should exclude module files,
|
215 |
+
# since they will be recreated, and may cause churn. Uncomment if using
|
216 |
+
# auto-import.
|
217 |
+
# .idea/artifacts
|
218 |
+
# .idea/compiler.xml
|
219 |
+
# .idea/jarRepositories.xml
|
220 |
+
# .idea/modules.xml
|
221 |
+
# .idea/*.iml
|
222 |
+
# .idea/modules
|
223 |
+
# *.iml
|
224 |
+
# *.ipr
|
225 |
+
|
226 |
+
# CMake
|
227 |
+
cmake-build-*/
|
228 |
+
|
229 |
+
# Mongo Explorer plugin
|
230 |
+
.idea/**/mongoSettings.xml
|
231 |
+
|
232 |
+
# File-based project format
|
233 |
+
*.iws
|
234 |
+
|
235 |
+
# IntelliJ
|
236 |
+
out/
|
237 |
+
|
238 |
+
# mpeltonen/sbt-idea plugin
|
239 |
+
.idea_modules/
|
240 |
+
|
241 |
+
# JIRA plugin
|
242 |
+
atlassian-ide-plugin.xml
|
243 |
+
|
244 |
+
# Cursive Clojure plugin
|
245 |
+
.idea/replstate.xml
|
246 |
+
|
247 |
+
# SonarLint plugin
|
248 |
+
.idea/sonarlint/
|
249 |
+
|
250 |
+
# Crashlytics plugin (for Android Studio and IntelliJ)
|
251 |
+
com_crashlytics_export_strings.xml
|
252 |
+
crashlytics.properties
|
253 |
+
crashlytics-build.properties
|
254 |
+
fabric.properties
|
255 |
+
|
256 |
+
# Editor-based Rest Client
|
257 |
+
.idea/httpRequests
|
258 |
+
|
259 |
+
# Android studio 3.1+ serialized cache file
|
260 |
+
.idea/caches/build_file_checksums.ser
|
261 |
+
|
262 |
+
### PyCharm Patch ###
|
263 |
+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
|
264 |
+
|
265 |
+
# *.iml
|
266 |
+
# modules.xml
|
267 |
+
# .idea/misc.xml
|
268 |
+
# *.ipr
|
269 |
+
|
270 |
+
# Sonarlint plugin
|
271 |
+
# https://plugins.jetbrains.com/plugin/7973-sonarlint
|
272 |
+
.idea/**/sonarlint/
|
273 |
+
|
274 |
+
# SonarQube Plugin
|
275 |
+
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
|
276 |
+
.idea/**/sonarIssues.xml
|
277 |
+
|
278 |
+
# Markdown Navigator plugin
|
279 |
+
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
|
280 |
+
.idea/**/markdown-navigator.xml
|
281 |
+
.idea/**/markdown-navigator-enh.xml
|
282 |
+
.idea/**/markdown-navigator/
|
283 |
+
|
284 |
+
# Cache file creation bug
|
285 |
+
# See https://youtrack.jetbrains.com/issue/JBR-2257
|
286 |
+
.idea/$CACHE_FILE$
|
287 |
+
|
288 |
+
# CodeStream plugin
|
289 |
+
# https://plugins.jetbrains.com/plugin/12206-codestream
|
290 |
+
.idea/codestream.xml
|
291 |
+
|
292 |
+
# Azure Toolkit for IntelliJ plugin
|
293 |
+
# https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij
|
294 |
+
.idea/**/azureSettings.xml
|
295 |
+
|
296 |
+
### Python ###
|
297 |
+
# Byte-compiled / optimized / DLL files
|
298 |
+
|
299 |
+
# C extensions
|
300 |
+
|
301 |
+
# Distribution / packaging
|
302 |
+
|
303 |
+
# PyInstaller
|
304 |
+
# Usually these files are written by a python script from a template
|
305 |
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
306 |
+
|
307 |
+
# Installer logs
|
308 |
+
|
309 |
+
# Unit test / coverage reports
|
310 |
+
|
311 |
+
# Translations
|
312 |
+
|
313 |
+
# Django stuff:
|
314 |
+
|
315 |
+
# Flask stuff:
|
316 |
+
|
317 |
+
# Scrapy stuff:
|
318 |
+
|
319 |
+
# Sphinx documentation
|
320 |
+
|
321 |
+
# PyBuilder
|
322 |
+
|
323 |
+
# Jupyter Notebook
|
324 |
+
|
325 |
+
# IPython
|
326 |
+
|
327 |
+
# pyenv
|
328 |
+
# For a library or package, you might want to ignore these files since the code is
|
329 |
+
# intended to run in multiple environments; otherwise, check them in:
|
330 |
+
# .python-version
|
331 |
+
|
332 |
+
# pipenv
|
333 |
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
334 |
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
335 |
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
336 |
+
# install all needed dependencies.
|
337 |
+
|
338 |
+
# poetry
|
339 |
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
340 |
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
341 |
+
# commonly ignored for libraries.
|
342 |
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
343 |
+
|
344 |
+
# pdm
|
345 |
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
346 |
+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
347 |
+
# in version control.
|
348 |
+
# https://pdm.fming.dev/#use-with-ide
|
349 |
+
|
350 |
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
351 |
+
|
352 |
+
# Celery stuff
|
353 |
+
|
354 |
+
# SageMath parsed files
|
355 |
+
|
356 |
+
# Environments
|
357 |
+
|
358 |
+
# Spyder project settings
|
359 |
+
|
360 |
+
# Rope project settings
|
361 |
+
|
362 |
+
# mkdocs documentation
|
363 |
+
|
364 |
+
# mypy
|
365 |
+
|
366 |
+
# Pyre type checker
|
367 |
+
|
368 |
+
# pytype static type analyzer
|
369 |
+
|
370 |
+
# Cython debug symbols
|
371 |
+
|
372 |
+
# PyCharm
|
373 |
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
374 |
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
375 |
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
376 |
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
377 |
+
|
378 |
+
### Python Patch ###
|
379 |
+
# Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
|
380 |
+
poetry.toml
|
381 |
+
|
382 |
+
# ruff
|
383 |
+
.ruff_cache/
|
384 |
+
|
385 |
+
# LSP config files
|
386 |
+
pyrightconfig.json
|
387 |
+
|
388 |
+
### VisualStudioCode ###
|
389 |
+
.vscode/*
|
390 |
+
!.vscode/settings.json
|
391 |
+
!.vscode/tasks.json
|
392 |
+
!.vscode/launch.json
|
393 |
+
!.vscode/extensions.json
|
394 |
+
!.vscode/*.code-snippets
|
395 |
+
|
396 |
+
# Local History for Visual Studio Code
|
397 |
+
.history/
|
398 |
+
|
399 |
+
# Built Visual Studio Code Extensions
|
400 |
+
*.vsix
|
401 |
+
|
402 |
+
### VisualStudioCode Patch ###
|
403 |
+
# Ignore all local history of files
|
404 |
+
.history
|
405 |
+
.ionide
|
406 |
+
|
407 |
+
# End of https://www.toptal.com/developers/gitignore/api/python,visualstudiocode,jupyternotebooks,pycharm,flask
|
examples/dummy.txt
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
numpy
|
2 |
+
opencv-python
|
3 |
+
tensorflow
|
4 |
+
gradio
|