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 842 B

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
  1. # Byte-compiled / optimized / DLL files
  2. __pycache__/
  3. .idea/
  4. *.py[cod]
  5. *$py.class
  6. # C extensions
  7. *.so
  8. # Installer logs
  9. pip-log.txt
  10. pip-delete-this-directory.txt
  11. # Jupyter Notebook
  12. .ipynb_checkpoints
  13. # IPython
  14. profile_default/
  15. ipython_config.py
  16. # pyenv
  17. .python-version
  18. # pipenv
  19. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  20. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  21. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  22. # install all needed dependencies.
  23. #Pipfile.lock
  24. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  25. __pypackages__/
  26. # Environments
  27. .virtualenv/
  28. .env
  29. .venv
  30. env/
  31. venv/
  32. ENV/
  33. env.bak/
  34. venv.bak/
  35. # Spyder project settings
  36. .spyderproject
  37. .spyproject
  38. # VS Code
  39. .vscode/
Tip!

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

Comments

Loading...