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 2.7 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
  1. # Byte-compiled / optimized / DLL files
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. # C extensions
  6. *.so
  7. # Distribution / packaging
  8. .Python
  9. build/
  10. develop-eggs/
  11. dist/
  12. downloads/
  13. eggs/
  14. .eggs/
  15. lib64/
  16. parts/
  17. sdist/
  18. var/
  19. wheels/
  20. share/python-wheels/
  21. *.egg-info/
  22. .installed.cfg
  23. *.egg
  24. MANIFEST
  25. # PyInstaller
  26. # Usually these files are written by a python script from a template
  27. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  28. *.manifest
  29. *.spec
  30. # Installer logs
  31. pip-log.txt
  32. pip-delete-this-directory.txt
  33. # Unit test / coverage reports
  34. htmlcov/
  35. .tox/
  36. .nox/
  37. .coverage
  38. .coverage.*
  39. .cache
  40. nosetests.xml
  41. coverage.xml
  42. *.cover
  43. *.py,cover
  44. .hypothesis/
  45. .pytest_cache/
  46. cover/
  47. # Translations
  48. *.mo
  49. *.pot
  50. # Django stuff:
  51. *.log
  52. local_settings.py
  53. db.sqlite3
  54. db.sqlite3-journal
  55. # Flask stuff:
  56. instance/
  57. .webassets-cache
  58. # Scrapy stuff:
  59. .scrapy
  60. # Sphinx documentation
  61. docs/_build/
  62. # PyBuilder
  63. .pybuilder/
  64. target/
  65. # Jupyter Notebook
  66. .ipynb_checkpoints
  67. # IPython
  68. profile_default/
  69. ipython_config.py
  70. # pyenv
  71. # For a library or package, you might want to ignore these files since the code is
  72. # intended to run in multiple environments; otherwise, check them in:
  73. # .python-version
  74. # pipenv
  75. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  76. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  77. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  78. # install all needed dependencies.
  79. #Pipfile.lock
  80. # poetry
  81. # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
  82. # This is especially recommended for binary packages to ensure reproducibility, and is more
  83. # commonly ignored for libraries.
  84. # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
  85. #poetry.lock
  86. # pdm
  87. # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
  88. #pdm.lock
  89. # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
  90. # in version control.
  91. # https://pdm.fming.dev/#use-with-ide
  92. .pdm.toml
  93. # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
  94. __pypackages__/
  95. # Celery stuff
  96. celerybeat-schedule
  97. celerybeat.pid
  98. # SageMath parsed files
  99. *.sage.py
  100. # Environments
  101. .env
  102. .venv
  103. env/
  104. venv/
  105. ENV/
  106. env.bak/
  107. venv.bak/
  108. # Spyder project settings
  109. .spyderproject
  110. .spyproject
  111. # Rope project settings
  112. .ropeproject
  113. # mkdocs documentation
  114. /site
  115. # mypy
  116. .mypy_cache/
  117. .dmypy.json
  118. dmypy.json
  119. # Pyre type checker
  120. .pyre/
  121. # pytype static type analyzer
  122. .pytype/
  123. # Cython debug symbols
  124. cython_debug/
  125. # IDE
  126. .idea/
  127. mlruns/
  128. data/processed/*/*.csv
  129. models/*
Tip!

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

Comments

Loading...