Skip to content

Commit 860591c

Browse files
authored
Merge pull request #110 from usrmertc/master
Adding Pytonotes
2 parents e5c0ae0 + e16d43d commit 860591c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+15487
-0
lines changed

Projects/Pytonotes/.gitignore

Lines changed: 287 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,287 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/python,django,visualstudiocode
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=python,django,visualstudiocode
3+
4+
### Django ###
5+
*.log
6+
*.pot
7+
*.pyc
8+
__pycache__/
9+
local_settings.py
10+
db.sqlite3-journal
11+
media
12+
13+
# If your build process includes running collectstatic, then you probably don't need or want to include staticfiles/
14+
# in your Git repository. Update and uncomment the following line accordingly.
15+
# <django-project-name>/staticfiles/
16+
17+
### Django.Python Stack ###
18+
# Byte-compiled / optimized / DLL files
19+
*.py[cod]
20+
*$py.class
21+
22+
# C extensions
23+
*.so
24+
25+
# Distribution / packaging
26+
.Python
27+
build/
28+
develop-eggs/
29+
dist/
30+
downloads/
31+
eggs/
32+
.eggs/
33+
lib/
34+
lib64/
35+
parts/
36+
sdist/
37+
var/
38+
wheels/
39+
share/python-wheels/
40+
*.egg-info/
41+
.installed.cfg
42+
*.egg
43+
MANIFEST
44+
45+
# PyInstaller
46+
# Usually these files are written by a python script from a template
47+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
48+
*.manifest
49+
*.spec
50+
51+
# Installer logs
52+
pip-log.txt
53+
pip-delete-this-directory.txt
54+
55+
# Unit test / coverage reports
56+
htmlcov/
57+
.tox/
58+
.nox/
59+
.coverage
60+
.coverage.*
61+
.cache
62+
nosetests.xml
63+
coverage.xml
64+
*.cover
65+
*.py,cover
66+
.hypothesis/
67+
.pytest_cache/
68+
cover/
69+
70+
# Translations
71+
*.mo
72+
73+
# Django stuff:
74+
75+
# Flask stuff:
76+
instance/
77+
.webassets-cache
78+
79+
# Scrapy stuff:
80+
.scrapy
81+
82+
# Sphinx documentation
83+
docs/_build/
84+
85+
# PyBuilder
86+
.pybuilder/
87+
target/
88+
89+
# Jupyter Notebook
90+
.ipynb_checkpoints
91+
92+
# IPython
93+
profile_default/
94+
ipython_config.py
95+
96+
# pyenv
97+
# For a library or package, you might want to ignore these files since the code is
98+
# intended to run in multiple environments; otherwise, check them in:
99+
# .python-version
100+
101+
# pipenv
102+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
103+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
104+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
105+
# install all needed dependencies.
106+
#Pipfile.lock
107+
108+
# poetry
109+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
110+
# This is especially recommended for binary packages to ensure reproducibility, and is more
111+
# commonly ignored for libraries.
112+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
113+
#poetry.lock
114+
115+
# pdm
116+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
117+
#pdm.lock
118+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
119+
# in version control.
120+
# https://pdm.fming.dev/#use-with-ide
121+
.pdm.toml
122+
123+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
124+
__pypackages__/
125+
126+
# Celery stuff
127+
celerybeat-schedule
128+
celerybeat.pid
129+
130+
# SageMath parsed files
131+
*.sage.py
132+
133+
# Environments
134+
.env
135+
.venv
136+
env/
137+
venv/
138+
ENV/
139+
env.bak/
140+
venv.bak/
141+
142+
# Spyder project settings
143+
.spyderproject
144+
.spyproject
145+
146+
# Rope project settings
147+
.ropeproject
148+
149+
# mkdocs documentation
150+
/site
151+
152+
# mypy
153+
.mypy_cache/
154+
.dmypy.json
155+
dmypy.json
156+
157+
# Pyre type checker
158+
.pyre/
159+
160+
# pytype static type analyzer
161+
.pytype/
162+
163+
# Cython debug symbols
164+
cython_debug/
165+
166+
# PyCharm
167+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
168+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
169+
# and can be added to the global gitignore or merged into this file. For a more nuclear
170+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
171+
#.idea/
172+
173+
### Python ###
174+
# Byte-compiled / optimized / DLL files
175+
176+
# C extensions
177+
178+
# Distribution / packaging
179+
180+
# PyInstaller
181+
# Usually these files are written by a python script from a template
182+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
183+
184+
# Installer logs
185+
186+
# Unit test / coverage reports
187+
188+
# Translations
189+
190+
# Django stuff:
191+
192+
# Flask stuff:
193+
194+
# Scrapy stuff:
195+
196+
# Sphinx documentation
197+
198+
# PyBuilder
199+
200+
# Jupyter Notebook
201+
202+
# IPython
203+
204+
# pyenv
205+
# For a library or package, you might want to ignore these files since the code is
206+
# intended to run in multiple environments; otherwise, check them in:
207+
# .python-version
208+
209+
# pipenv
210+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
211+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
212+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
213+
# install all needed dependencies.
214+
215+
# poetry
216+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
217+
# This is especially recommended for binary packages to ensure reproducibility, and is more
218+
# commonly ignored for libraries.
219+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
220+
221+
# pdm
222+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
223+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
224+
# in version control.
225+
# https://pdm.fming.dev/#use-with-ide
226+
227+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
228+
229+
# Celery stuff
230+
231+
# SageMath parsed files
232+
233+
# Environments
234+
235+
# Spyder project settings
236+
237+
# Rope project settings
238+
239+
# mkdocs documentation
240+
241+
# mypy
242+
243+
# Pyre type checker
244+
245+
# pytype static type analyzer
246+
247+
# Cython debug symbols
248+
249+
# PyCharm
250+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
251+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
252+
# and can be added to the global gitignore or merged into this file. For a more nuclear
253+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
254+
255+
### Python Patch ###
256+
# Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
257+
poetry.toml
258+
259+
# ruff
260+
.ruff_cache/
261+
262+
# LSP config files
263+
pyrightconfig.json
264+
265+
### VisualStudioCode ###
266+
**/.vscode/
267+
!.vscode/settings.json
268+
!.vscode/tasks.json
269+
!.vscode/launch.json
270+
!.vscode/extensions.json
271+
!.vscode/*.code-snippets
272+
273+
# Local History for Visual Studio Code
274+
.history/
275+
276+
# Built Visual Studio Code Extensions
277+
*.vsix
278+
279+
### VisualStudioCode Patch ###
280+
# Ignore all local history of files
281+
.history
282+
.ionide
283+
.hintrc
284+
285+
# End of https://www.toptal.com/developers/gitignore/api/python,django,visualstudiocode
286+
287+
*.sqlite3

Projects/Pytonotes/LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024 Pytonotes Team
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)