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.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
  1. # Data
  2. logs/
  3. stores/
  4. mlflow/
  5. results/
  6. workspaces/
  7. # VSCode
  8. .vscode/
  9. .idea
  10. # Byte-compiled / optimized / DLL files
  11. __pycache__/
  12. *.py[cod]
  13. *$py.class
  14. # C extensions
  15. *.so
  16. # Distribution / packaging
  17. .Python
  18. build/
  19. develop-eggs/
  20. dist/
  21. downloads/
  22. eggs/
  23. .eggs/
  24. lib/
  25. lib64/
  26. parts/
  27. sdist/
  28. var/
  29. wheels/
  30. pip-wheel-metadata/
  31. share/python-wheels/
  32. *.egg-info/
  33. .installed.cfg
  34. *.egg
  35. MANIFEST
  36. # PyInstaller
  37. *.manifest
  38. *.spec
  39. # Installer logs
  40. pip-log.txt
  41. pip-delete-this-directory.txt
  42. # Unit test / coverage reports
  43. htmlcov/
  44. .tox/
  45. .nox/
  46. .coverage
  47. .coverage.*
  48. .cache
  49. nosetests.xml
  50. coverage.xml
  51. *.cover
  52. *.py,cover
  53. .hypothesis/
  54. .pytest_cache/
  55. # Flask:
  56. instance/
  57. .webassets-cache
  58. # Scrapy:
  59. .scrapy
  60. # Sphinx
  61. docs/_build/
  62. # PyBuilder
  63. target/
  64. # IPython
  65. .ipynb_checkpoints
  66. profile_default/
  67. ipython_config.py
  68. # pyenv
  69. .python-version
  70. # PEP 582
  71. __pypackages__/
  72. # Celery
  73. celerybeat-schedule
  74. celerybeat.pid
  75. # Environment
  76. .env
  77. .venv
  78. env/
  79. venv/
  80. ENV/
  81. env.bak/
  82. venv.bak/
  83. # mkdocs
  84. site/
  85. # Airflow
  86. airflow/airflow.db
  87. # MacOS
  88. .DS_Store
  89. # Clean up
  90. .trash/
Tip!

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

Comments

Loading...