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.2 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
  1. docs/site/
  2. # OSX Junk
  3. .DS_Store
  4. # test cache
  5. .cache/*
  6. tests/__pycache__/*
  7. *.pytest_cache/
  8. # Byte-compiled / optimized / DLL files
  9. __pycache__/
  10. *.py[cod]
  11. # C extensions
  12. *.so
  13. # Distribution / packaging
  14. .Python
  15. env/
  16. build/
  17. develop-eggs/
  18. dist/
  19. downloads/
  20. eggs/
  21. .eggs/
  22. lib/
  23. lib64/
  24. parts/
  25. sdist/
  26. var/
  27. *.egg-info/
  28. .installed.cfg
  29. *.egg
  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. # Translations
  48. *.mo
  49. *.pot
  50. # Django stuff:
  51. *.log
  52. # Sphinx documentation
  53. docs/_build/
  54. # PyBuilder
  55. target/
  56. # DotEnv configuration
  57. .env
  58. # Database
  59. *.db
  60. *.rdb
  61. # Pycharm
  62. .idea
  63. # VS Code
  64. .vscode/
  65. # Spyder
  66. .spyproject/
  67. # Jupyter NB Checkpoints
  68. .ipynb_checkpoints/
  69. # exclude data from source control by default
  70. /data/
  71. # Mac OS-specific storage files
  72. .DS_Store
  73. # vim
  74. *.swp
  75. *.swo
  76. # Mypy cache
  77. .mypy_cache/
  78. # emacs
  79. *~
  80. *.org
  81. #*#
  82. # Jupyter NB Checkpoints
  83. .ipynb_checkpoints/
  84. # venv
  85. /venv/
Tip!

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

Comments

Loading...