PlantBrowseOrchard
Connecting...

Plant ideas. Watch them grow.

Plant ideas. Watch them grow.

Whitepaper·How to buy·Privacy·Terms
DexPump

© 2026 PNL

·

No. 139

·

built on Solana

back to the code overview

github.com/fthrvi/nakshatra

.gitignore

134 lines · 1.9 kb · markup

github raw
1# Byte-compiled / optimized / DLL files
2__pycache__/
3*.py[cod]
4*$py.class
5
6# C extensions
7*.so
8
9# Distribution / packaging
10.Python
11build/
12develop-eggs/
13dist/
14downloads/
15eggs/
16.eggs/
17lib64/
18parts/
19sdist/
20var/
21wheels/
22pip-wheel-metadata/
23share/python-wheels/
24*.egg-info/
25.installed.cfg
26*.egg
27MANIFEST
28
29# PyInstaller
30# Usually these files are written by a python script from a template
31# before PyInstaller builds the exe, so as to inject date/other infos into it.
32*.manifest
33*.spec
34
35# Installer logs
36pip-log.txt
37pip-delete-this-directory.txt
38
39# Unit test / coverage reports
40htmlcov/
41.tox/
42.nox/
43.coverage
44.coverage.*
45.cache
46nosetests.xml
47coverage.xml
48*.cover
49*.py,cover
50.hypothesis/
51.pytest_cache/
52
53# Translations
54*.mo
55*.pot
56
57# Django stuff:
58*.log
59local_settings.py
60db.sqlite3
61db.sqlite3-journal
62
63# Flask stuff:
64instance/
65.webassets-cache
66
67# Scrapy stuff:
68.scrapy
69
70# Sphinx documentation
71docs/_build/
72
73# PyBuilder
74target/
75
76# Jupyter Notebook
77.ipynb_checkpoints
78
79# IPython
80profile_default/
81ipython_config.py
82
83# pyenv
84.python-version
85
86# pipenv
87# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
88# However, in case of collaboration, if having platform-specific dependencies or dependencies
89# having no cross-platform support, pipenv may install dependencies that don't work, or not
90# install all needed dependencies.
91#Pipfile.lock
92
93# PEP 582; used by e.g. github.com/David-OConnor/pyflow
94__pypackages__/
95
96# Celery stuff
97celerybeat-schedule
98celerybeat.pid
99
100# SageMath parsed files
101*.sage.py
102
103# Environments
104.env
105.venv
106env/
107venv/
108ENV/
109env.bak/
110venv.bak/
111
112# Spyder project settings
113.spyderproject
114.spyproject
115
116# Rope project settings
117.ropeproject
118
119# mkdocs documentation
120/site
121
122# mypy
123.mypy_cache/
124.dmypy.json
125dmypy.json
126
127# Pyre type checker
128.pyre/
129
130.idea/
131
132# Track experiment artifacts (the empirical record), even though *.log is otherwise ignored.
133!experiments/**/*.log
134