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 1021 B

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

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

Comments

Loading...