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.5 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
  1. *.bak
  2. .gitattributes
  3. .last_checked
  4. .gitconfig
  5. *.bak
  6. *.log
  7. *~
  8. ~*
  9. _tmp*
  10. tmp*
  11. tags
  12. # Byte-compiled / optimized / DLL files
  13. __pycache__/
  14. *.py[cod]
  15. *$py.class
  16. # C extensions
  17. *.so
  18. # Distribution / packaging
  19. .Python
  20. env/
  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. *.egg-info/
  34. .installed.cfg
  35. *.egg
  36. # PyInstaller
  37. # Usually these files are written by a python script from a template
  38. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  39. *.manifest
  40. *.spec
  41. # Installer logs
  42. pip-log.txt
  43. pip-delete-this-directory.txt
  44. # Unit test / coverage reports
  45. htmlcov/
  46. .tox/
  47. .coverage
  48. .coverage.*
  49. .cache
  50. nosetests.xml
  51. coverage.xml
  52. *.cover
  53. .hypothesis/
  54. # Translations
  55. *.mo
  56. *.pot
  57. # Django stuff:
  58. *.log
  59. local_settings.py
  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. # pyenv
  72. .python-version
  73. # celery beat schedule file
  74. celerybeat-schedule
  75. # SageMath parsed files
  76. *.sage.py
  77. # dotenv
  78. .env
  79. # virtualenv
  80. .venv
  81. venv/
  82. ENV/
  83. # Spyder project settings
  84. .spyderproject
  85. .spyproject
  86. # Rope project settings
  87. .ropeproject
  88. # mkdocs documentation
  89. /site
  90. # mypy
  91. .mypy_cache/
  92. .vscode
  93. *.swp
  94. # osx generated files
  95. .DS_Store
  96. .DS_Store?
  97. .Trashes
  98. ehthumbs.db
  99. Thumbs.db
  100. .idea
  101. # pytest
  102. .pytest_cache
  103. # tools/trust-doc-nbs
  104. docs_src/.last_checked
  105. # symlinks to fastai
  106. docs_src/fastai
  107. tools/fastai
  108. # link checker
  109. checklink/cookies.txt
  110. # .gitconfig is now autogenerated
  111. .gitconfig
  112. /data
Tip!

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

Comments

Loading...