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.4 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
  1. *.pth
  2. *.bak
  3. *.log
  4. *~
  5. .~*
  6. .pypirc
  7. ~*
  8. tmp*
  9. tags
  10. # Byte-compiled / optimized / DLL files
  11. __pycache__/
  12. *.py[cod]
  13. *$py.class
  14. # C extensions
  15. *.so
  16. # Distribution / packaging
  17. .Python
  18. env/
  19. build/
  20. conda-dist
  21. develop-eggs/
  22. dist/
  23. downloads/
  24. eggs/
  25. .eggs/
  26. lib/
  27. lib64/
  28. parts/
  29. sdist/
  30. var/
  31. wheels/
  32. *.egg-info/
  33. .installed.cfg
  34. *.egg
  35. # PyInstaller
  36. # Usually these files are written by a python script from a template
  37. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  38. *.manifest
  39. *.spec
  40. # Installer logs
  41. pip-log.txt
  42. pip-delete-this-directory.txt
  43. # Unit test / coverage reports
  44. htmlcov/
  45. .tox/
  46. .coverage
  47. .coverage.*
  48. .cache
  49. nosetests.xml
  50. coverage.xml
  51. *.cover
  52. .hypothesis/
  53. # Translations
  54. *.mo
  55. *.pot
  56. # Django stuff:
  57. *.log
  58. local_settings.py
  59. # Flask stuff:
  60. instance/
  61. .webassets-cache
  62. # Scrapy stuff:
  63. .scrapy
  64. # Sphinx documentation
  65. docs/_build/
  66. # PyBuilder
  67. target/
  68. # Jupyter Notebook
  69. .ipynb_checkpoints
  70. # pyenv
  71. .python-version
  72. # celery beat schedule file
  73. celerybeat-schedule
  74. # SageMath parsed files
  75. *.sage.py
  76. # dotenv
  77. .env
  78. # virtualenv
  79. .venv
  80. venv/
  81. ENV/
  82. # Spyder project settings
  83. .spyderproject
  84. .spyproject
  85. # Rope project settings
  86. .ropeproject
  87. # mkdocs documentation
  88. /site
  89. # mypy
  90. .mypy_cache/
  91. .vscode
  92. *.swp
  93. # osx generated files
  94. .DS_Store
  95. .DS_Store?
  96. .Trashes
  97. ehthumbs.db
  98. Thumbs.db
  99. .idea
  100. # pytest
  101. .pytest_cache
  102. # tools/trust-doc-nbs
  103. examples/.last_checked
  104. # symlinks to fastai
  105. nbs/dl1/fastai
  106. # .gitconfig is now autogenerated
  107. .gitconfig
Tip!

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

Comments

Loading...