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

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

Comments

Loading...