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
  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. env/
  10. build/
  11. develop-eggs/
  12. dist/
  13. downloads/
  14. eggs/
  15. .eggs/
  16. lib/
  17. lib64/
  18. parts/
  19. sdist/
  20. var/
  21. wheels/
  22. *.egg-info/
  23. .installed.cfg
  24. *.egg
  25. # PyInstaller
  26. # Usually these files are written by a python script from a template
  27. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  28. *.manifest
  29. *.spec
  30. # Installer logs
  31. pip-log.txt
  32. pip-delete-this-directory.txt
  33. # Unit test / coverage reports
  34. htmlcov/
  35. .tox/
  36. .coverage
  37. .coverage.*
  38. .cache
  39. nosetests.xml
  40. coverage.xml
  41. *.cover
  42. .hypothesis/
  43. # Translations
  44. *.mo
  45. *.pot
  46. # Django stuff:
  47. *.log
  48. local_settings.py
  49. # Flask stuff:
  50. instance/
  51. .webassets-cache
  52. # Scrapy stuff:
  53. .scrapy
  54. # Sphinx documentation
  55. docs/_build/
  56. # PyBuilder
  57. target/
  58. # Jupyter Notebook
  59. .ipynb_checkpoints
  60. # pyenv
  61. .python-version
  62. # celery beat schedule file
  63. celerybeat-schedule
  64. # SageMath parsed files
  65. *.sage.py
  66. # dotenv
  67. .env
  68. # virtualenv
  69. .venv
  70. venv/
  71. ENV/
  72. # Spyder project settings
  73. .spyderproject
  74. .spyproject
  75. # Rope project settings
  76. .ropeproject
  77. # mkdocs documentation
  78. /site
  79. # mypy
  80. .mypy_cache/
  81. # input data, saved log, checkpoints
  82. # editor, os cache directory
  83. .vscode/
  84. .idea/
  85. __MACOSX/
  86. # additional
  87. .DS_Store
  88. !.gitkeep
Tip!

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

Comments

Loading...