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.1 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
  1. # Byte-compiled / optimized / DLL files
  2. __pycache__/
  3. *.py[cod]
  4. # C extensions
  5. *.so
  6. test/
  7. .test
  8. # Distribution / packaging
  9. .Python
  10. env/
  11. .venv
  12. build/
  13. develop-eggs/
  14. dist/
  15. downloads/
  16. eggs/
  17. .eggs/
  18. lib/
  19. lib64/
  20. parts/
  21. sdist/
  22. var/
  23. *.egg-info/
  24. .installed.cfg
  25. *.egg'
  26. venv
  27. .vscode
  28. # PyInstaller
  29. # Usually these files are written by a python script from a template
  30. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  31. *.manifest
  32. *.spec
  33. # Installer logs
  34. pip-log.txt
  35. pip-delete-this-directory.txt
  36. # Unit test / coverage reports
  37. htmlcov/
  38. .tox/
  39. .coverage
  40. .coverage.*
  41. .cache
  42. nosetests.xml
  43. coverage.xml
  44. *.cover
  45. # Translations
  46. *.mo
  47. *.pot
  48. # Django stuff:
  49. *.log
  50. # Sphinx documentation
  51. docs/_build/
  52. # PyBuilder
  53. target/
  54. # DotEnv configuration
  55. .env
  56. # Database
  57. *.db
  58. *.rdb
  59. # Pycharm
  60. .idea
  61. # VS Code
  62. .vscode/
  63. # Spyder
  64. .spyproject/
  65. # Jupyter NB Checkpoints
  66. .ipynb_checkpoints/
  67. # Mac OS-specific storage files
  68. .DS_Store
  69. # vim
  70. *.swp
  71. *.swo
  72. # Caches
  73. .mypy_cache/
  74. .pytest_cache/
  75. .ruff_cache/
  76. # Hydra logs
  77. outputs
  78. #Manual
  79. template.py
  80. templates/
  81. .streamlit/secrets.toml
  82. secrets.toml
  83. myenv/
  84. research/
Tip!

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

Comments

Loading...