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
  1. data/*
  2. models/*
  3. example_1/mlruns/*
  4. # Byte-compiled / optimized / DLL files
  5. __pycache__/
  6. *.py[cod]
  7. *$py.class
  8. # C extensions
  9. *.so
  10. # Distribution / packaging
  11. .Python
  12. build/
  13. develop-eggs/
  14. dist/
  15. downloads/
  16. eggs/
  17. .eggs/
  18. lib/
  19. lib64/
  20. parts/
  21. sdist/
  22. var/
  23. wheels/
  24. pip-wheel-metadata/
  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. # Translations
  52. *.mo
  53. *.pot
  54. # Django stuff:
  55. *.log
  56. local_settings.py
  57. db.sqlite3
  58. db.sqlite3-journal
  59. # Flask stuff:
  60. instance/
  61. .webassets-cache
  62. # Scrapy stuff:
  63. .scrapy
  64. # Sphinx documentation
  65. docs/_build/
  66. # PyBuilder
  67. target/
  68. # Jupyter Notebook
  69. .ipynb_checkpoints
  70. # IPython
  71. profile_default/
  72. ipython_config.py
  73. # pyenv
  74. .python-version
  75. # pipenv
  76. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  77. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  78. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  79. # install all needed dependencies.
  80. #Pipfile.lock
  81. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  82. __pypackages__/
  83. # Celery stuff
  84. celerybeat-schedule
  85. celerybeat.pid
  86. # SageMath parsed files
  87. *.sage.py
  88. # Environments
  89. .env
  90. .venv
  91. env/
  92. venv/
  93. ENV/
  94. env.bak/
  95. venv.bak/
  96. # Spyder project settings
  97. .spyderproject
  98. .spyproject
  99. # Rope project settings
  100. .ropeproject
  101. # mkdocs documentation
  102. /site
  103. # mypy
  104. .mypy_cache/
  105. .dmypy.json
  106. dmypy.json
  107. # Pyre type checker
  108. .pyre/
Tip!

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

Comments

Loading...