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

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

Comments

Loading...