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

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

Comments

Loading...