Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

.gitignore 4.0 KB

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

Press p or to see the previous file or, n or to see the next file

Comments

Loading...