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.3 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
  1. # don't include datasets
  2. datasets/
  3. # vs code
  4. .vscode/*
  5. .vscode/settings.json
  6. # Byte-compiled / optimized / DLL files
  7. __pycache__/
  8. *.py[cod]
  9. *$py.class
  10. # C extensions
  11. *.so
  12. # Distribution / packaging
  13. .Python
  14. build/
  15. develop-eggs/
  16. dist/
  17. downloads/
  18. eggs/
  19. .eggs/
  20. lib/
  21. lib64/
  22. parts/
  23. sdist/
  24. var/
  25. 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. .coverage
  42. .coverage.*
  43. .cache
  44. nosetests.xml
  45. coverage.xml
  46. *.cover
  47. .hypothesis/
  48. .pytest_cache/
  49. # Translations
  50. *.mo
  51. *.pot
  52. # Django stuff:
  53. *.log
  54. local_settings.py
  55. db.sqlite3
  56. # Flask stuff:
  57. instance/
  58. .webassets-cache
  59. # Scrapy stuff:
  60. .scrapy
  61. # Sphinx documentation
  62. docs/_build/
  63. # PyBuilder
  64. target/
  65. # Jupyter Notebook
  66. .ipynb_checkpoints
  67. # pyenv
  68. .python-version
  69. # celery beat schedule file
  70. celerybeat-schedule
  71. # SageMath parsed files
  72. *.sage.py
  73. # Environments
  74. .env
  75. .venv
  76. env/
  77. venv/
  78. ENV/
  79. env.bak/
  80. venv.bak/
  81. # Spyder project settings
  82. .spyderproject
  83. .spyproject
  84. # Rope project settings
  85. .ropeproject
  86. # mkdocs documentation
  87. /site
  88. # mypy
  89. .mypy_cache/
  90. .env/
  91. __pycache__/
Tip!

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

Comments

Loading...