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

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

Comments

Loading...