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.2 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
  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. .coverage
  37. .coverage.*
  38. .cache
  39. nosetests.xml
  40. coverage.xml
  41. *.cover
  42. .hypothesis/
  43. .pytest_cache/
  44. # Translations
  45. *.mo
  46. *.pot
  47. # Django stuff:
  48. *.log
  49. local_settings.py
  50. db.sqlite3
  51. # Flask stuff:
  52. instance/
  53. .webassets-cache
  54. # Scrapy stuff:
  55. .scrapy
  56. # Sphinx documentation
  57. docs/_build/
  58. # PyBuilder
  59. target/
  60. # Jupyter Notebook
  61. .ipynb_checkpoints
  62. # pyenv
  63. .python-version
  64. # celery beat schedule file
  65. celerybeat-schedule
  66. # SageMath parsed files
  67. *.sage.py
  68. # Environments
  69. .env
  70. .venv
  71. env/
  72. venv/
  73. ENV/
  74. env.bak/
  75. venv.bak/
  76. # Spyder project settings
  77. .spyderproject
  78. .spyproject
  79. # Rope project settings
  80. .ropeproject
  81. # mkdocs documentation
  82. /site
  83. # mypy
  84. .mypy_cache/
  85. .vscode
  86. dist
  87. .idea
  88. /test.py
Tip!

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

Comments

Loading...