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

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

Comments

Loading...