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.3 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
  1. # Byte-compiled / optimized / DLL files
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. # C extensions
  6. *.so
  7. # Distribution / packaging
  8. .Python
  9. build/
  10. develop-eggs/
  11. dist/
  12. downloads/
  13. eggs/
  14. .eggs/
  15. lib/
  16. lib64/
  17. parts/
  18. sdist/
  19. var/
  20. wheels/
  21. *.egg-info/
  22. .installed.cfg
  23. *.egg
  24. MANIFEST
  25. # PyInstaller
  26. # Usually these files are written by a python script from a template
  27. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  28. *.manifest
  29. *.spec
  30. # Installer logs
  31. pip-log.txt
  32. pip-delete-this-directory.txt
  33. # Unit test / coverage reports
  34. htmlcov/
  35. .tox/
  36. .nox/
  37. .coverage
  38. .coverage.*
  39. .cache
  40. nosetests.xml
  41. coverage.xml
  42. *.cover
  43. .hypothesis/
  44. .pytest_cache/
  45. # Translations
  46. *.mo
  47. *.pot
  48. # Django stuff:
  49. *.log
  50. local_settings.py
  51. db.sqlite3
  52. # Flask stuff:
  53. instance/
  54. .webassets-cache
  55. # Scrapy stuff:
  56. .scrapy
  57. # Sphinx documentation
  58. docs/_build/
  59. # PyBuilder
  60. target/
  61. # Jupyter Notebook
  62. .ipynb_checkpoints
  63. # IPython
  64. profile_default/
  65. ipython_config.py
  66. # pyenv
  67. .python-version
  68. # celery beat schedule file
  69. celerybeat-schedule
  70. # SageMath parsed files
  71. *.sage.py
  72. # Environments
  73. .env
  74. .venv
  75. env/
  76. venv/
  77. ENV/
  78. env.bak/
  79. venv.bak/
  80. # Spyder project settings
  81. .spyderproject
  82. .spyproject
  83. # Rope project settings
  84. .ropeproject
  85. # mkdocs documentation
  86. /site
  87. # mypy
  88. .mypy_cache/
  89. .dmypy.json
  90. dmypy.json
  91. # Pyre type checker
  92. .pyre/
  93. # Papermill outputs
  94. papermill_outputs/
Tip!

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

Comments

Loading...