├── .flake8 ├── .github └── workflows │ └── checks.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── Aptfile ├── LICENSE ├── Procfile ├── README.md ├── app ├── api │ └── api_v1 │ │ ├── __py__.py │ │ └── api.py ├── main.py ├── pyfatoora │ ├── __init__.py │ ├── pyfatoora.py │ └── schemas.py ├── tests │ ├── __init__.py │ └── test_api.py └── utils │ └── helpers.py ├── images ├── fast-fatoora-logo.png ├── full_E-invoice.jpg └── secret-qr-code.png ├── pyproject.toml ├── requirements.txt ├── runtime.txt └── templates ├── fatoora.html └── index.html /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NafieAlhilaly/fast-fatoora/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/checks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NafieAlhilaly/fast-fatoora/HEAD/.github/workflows/checks.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NafieAlhilaly/fast-fatoora/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NafieAlhilaly/fast-fatoora/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Aptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NafieAlhilaly/fast-fatoora/HEAD/Aptfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NafieAlhilaly/fast-fatoora/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NafieAlhilaly/fast-fatoora/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NafieAlhilaly/fast-fatoora/HEAD/README.md -------------------------------------------------------------------------------- /app/api/api_v1/__py__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/api/api_v1/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NafieAlhilaly/fast-fatoora/HEAD/app/api/api_v1/api.py -------------------------------------------------------------------------------- /app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NafieAlhilaly/fast-fatoora/HEAD/app/main.py -------------------------------------------------------------------------------- /app/pyfatoora/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NafieAlhilaly/fast-fatoora/HEAD/app/pyfatoora/__init__.py -------------------------------------------------------------------------------- /app/pyfatoora/pyfatoora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NafieAlhilaly/fast-fatoora/HEAD/app/pyfatoora/pyfatoora.py -------------------------------------------------------------------------------- /app/pyfatoora/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NafieAlhilaly/fast-fatoora/HEAD/app/pyfatoora/schemas.py -------------------------------------------------------------------------------- /app/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NafieAlhilaly/fast-fatoora/HEAD/app/tests/test_api.py -------------------------------------------------------------------------------- /app/utils/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NafieAlhilaly/fast-fatoora/HEAD/app/utils/helpers.py -------------------------------------------------------------------------------- /images/fast-fatoora-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NafieAlhilaly/fast-fatoora/HEAD/images/fast-fatoora-logo.png -------------------------------------------------------------------------------- /images/full_E-invoice.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NafieAlhilaly/fast-fatoora/HEAD/images/full_E-invoice.jpg -------------------------------------------------------------------------------- /images/secret-qr-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NafieAlhilaly/fast-fatoora/HEAD/images/secret-qr-code.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NafieAlhilaly/fast-fatoora/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NafieAlhilaly/fast-fatoora/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.0 -------------------------------------------------------------------------------- /templates/fatoora.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NafieAlhilaly/fast-fatoora/HEAD/templates/fatoora.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NafieAlhilaly/fast-fatoora/HEAD/templates/index.html --------------------------------------------------------------------------------