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

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

Comments

Loading...