commit
e6e2e4b1a6
2 changed files with 131 additions and 0 deletions
@ -0,0 +1,123 @@
|
||||
# Created by https://www.gitignore.io/api/python |
||||
|
||||
### Python ### |
||||
# Byte-compiled / optimized / DLL files |
||||
__pycache__/ |
||||
*.py[cod] |
||||
*$py.class |
||||
|
||||
# C extensions |
||||
*.so |
||||
|
||||
# Distribution / packaging |
||||
.Python |
||||
env/ |
||||
build/ |
||||
develop-eggs/ |
||||
dist/ |
||||
downloads/ |
||||
eggs/ |
||||
.eggs/ |
||||
lib/ |
||||
!util/lib |
||||
lib64/ |
||||
parts/ |
||||
sdist/ |
||||
var/ |
||||
wheels/ |
||||
*.egg-info/ |
||||
.installed.cfg |
||||
*.egg |
||||
|
||||
# PyInstaller |
||||
# Usually these files are written by a python script from a template |
||||
# before PyInstaller builds the exe, so as to inject date/other infos into it. |
||||
|
||||
*.manifest |
||||
*.spec |
||||
|
||||
# Installer logs |
||||
pip-log.txt |
||||
pip-delete-this-directory.txt |
||||
|
||||
# Unit test / coverage reports |
||||
htmlcov/ |
||||
.tox/ |
||||
.coverage |
||||
.coverage.* |
||||
.cache |
||||
nosetests.xml |
||||
coverage.xml |
||||
*,cover |
||||
.hypothesis/ |
||||
.pytest* |
||||
report.html |
||||
|
||||
# Translations |
||||
*.mo |
||||
*.pot |
||||
|
||||
# Django stuff: |
||||
*.log |
||||
local_settings.py |
||||
|
||||
# Flask stuff: |
||||
instance/ |
||||
.webassets-cache |
||||
|
||||
# Scrapy stuff: |
||||
.scrapy |
||||
|
||||
# Doxygen documentation |
||||
docs/doxygen/* |
||||
!docs/doxygen/.keep |
||||
|
||||
# Sphinx documentation |
||||
docs/_build/* |
||||
!docs/_build/.keep |
||||
|
||||
# PyBuilder |
||||
target/ |
||||
|
||||
# Jupyter Notebook |
||||
.ipynb_checkpoints |
||||
|
||||
# pyenv |
||||
.python-version |
||||
|
||||
# celery beat schedule file |
||||
celerybeat-schedule |
||||
|
||||
# dotenv |
||||
.env |
||||
|
||||
# virtualenv |
||||
.venv/ |
||||
venv/ |
||||
ENV/ |
||||
|
||||
# Spyder project settings |
||||
.spyderproject |
||||
|
||||
# Rope project settings |
||||
.ropeproject |
||||
|
||||
# ctags |
||||
tags |
||||
|
||||
# vim |
||||
*.swn |
||||
*.swo |
||||
*.swp |
||||
|
||||
# Mac crud |
||||
*.DS_Store |
||||
|
||||
# Local crud |
||||
crud/ |
||||
|
||||
# Pseudbot API keys |
||||
pseud.json |
||||
|
||||
# The editor that people seem to like for some reason |
||||
.vscode |
@ -0,0 +1,8 @@
|
||||
Copyright © 2021 Albert Sanchez |
||||
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, version 3. |
||||
|
||||
The above copyright notice, this permission notice and the words "CHRIST IS KING" shall be included in all copies or substantial portions of the Software. |
||||
|
||||
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. |
||||
|
||||
You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/> |
Loading…
Reference in new issue