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

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

Comments

Loading...