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

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

Comments

Loading...