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

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

Comments

Loading...