diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9c43f1e --- /dev/null +++ b/.gitignore @@ -0,0 +1,67 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +env/ +venv/ +.venv/ +ENV/ +env.bak/ +venv.bak/ +*.pyc + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ +.DS_Store + +# Project +*.log +*.pot +*.pyc +.localenv/ +.env +.venv + +# Testing +.pytest_cache/ +.coverage +htmlcov/ +.tox/ +.mypy_cache/ +.dmypy.json +dmypy.json + +# Database +*.db +*.sqlite +*.sqlite3 + +# Distribution +/dist/ +/build/ +*.egg-info/ +*.egg +.idea/ +# MyPy +.mypy_cache/ + +# Jupyter Notebook +.ipynb_checkpoints/ + +# Uploads +uploads/ +media/ +staticfiles/ + +# Secrets +*.key +*.pem +*.crt +config.local.* +secrets.* diff --git a/main.py b/main.py new file mode 100644 index 0000000..473a0f4