├── .deepsource.toml ├── .dockerignore ├── .github └── workflows │ ├── build.yml │ └── codeql-analysis.yml ├── .gitignore ├── Dockerfile ├── Makefile ├── README.md ├── cert ├── .gitkeep ├── server.csr.cnf └── v3.ext ├── config.yml ├── data ├── img │ └── .gitkeep ├── tmp │ └── .gitkeep ├── training │ └── .gitkeep └── txt │ └── .gitkeep ├── docs ├── api.rst ├── conf.py ├── config.rst ├── index.rst └── installation.rst ├── requirements.txt ├── sonar-project.properties ├── src ├── colors.py ├── receipt_printer.py ├── receipt_server.py └── util.py ├── tessdata ├── deu_slashed_zeros.traineddata ├── eng_slashed_zeros.traineddata ├── fra_slashed_zeros.traineddata └── spa_slashed_zeros.traineddata └── util ├── generate_certificate.sh ├── generate_token.sh └── launcher.sh /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReceiptManager/receipt-parser-server/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | data -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReceiptManager/receipt-parser-server/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReceiptManager/receipt-parser-server/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReceiptManager/receipt-parser-server/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReceiptManager/receipt-parser-server/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReceiptManager/receipt-parser-server/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReceiptManager/receipt-parser-server/HEAD/README.md -------------------------------------------------------------------------------- /cert/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cert/server.csr.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReceiptManager/receipt-parser-server/HEAD/cert/server.csr.cnf -------------------------------------------------------------------------------- /cert/v3.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReceiptManager/receipt-parser-server/HEAD/cert/v3.ext -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReceiptManager/receipt-parser-server/HEAD/config.yml -------------------------------------------------------------------------------- /data/img/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/tmp/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/training/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/txt/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReceiptManager/receipt-parser-server/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReceiptManager/receipt-parser-server/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReceiptManager/receipt-parser-server/HEAD/docs/config.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReceiptManager/receipt-parser-server/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReceiptManager/receipt-parser-server/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReceiptManager/receipt-parser-server/HEAD/requirements.txt -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReceiptManager/receipt-parser-server/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReceiptManager/receipt-parser-server/HEAD/src/colors.py -------------------------------------------------------------------------------- /src/receipt_printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReceiptManager/receipt-parser-server/HEAD/src/receipt_printer.py -------------------------------------------------------------------------------- /src/receipt_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReceiptManager/receipt-parser-server/HEAD/src/receipt_server.py -------------------------------------------------------------------------------- /src/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReceiptManager/receipt-parser-server/HEAD/src/util.py -------------------------------------------------------------------------------- /tessdata/deu_slashed_zeros.traineddata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReceiptManager/receipt-parser-server/HEAD/tessdata/deu_slashed_zeros.traineddata -------------------------------------------------------------------------------- /tessdata/eng_slashed_zeros.traineddata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReceiptManager/receipt-parser-server/HEAD/tessdata/eng_slashed_zeros.traineddata -------------------------------------------------------------------------------- /tessdata/fra_slashed_zeros.traineddata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReceiptManager/receipt-parser-server/HEAD/tessdata/fra_slashed_zeros.traineddata -------------------------------------------------------------------------------- /tessdata/spa_slashed_zeros.traineddata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReceiptManager/receipt-parser-server/HEAD/tessdata/spa_slashed_zeros.traineddata -------------------------------------------------------------------------------- /util/generate_certificate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReceiptManager/receipt-parser-server/HEAD/util/generate_certificate.sh -------------------------------------------------------------------------------- /util/generate_token.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReceiptManager/receipt-parser-server/HEAD/util/generate_token.sh -------------------------------------------------------------------------------- /util/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReceiptManager/receipt-parser-server/HEAD/util/launcher.sh --------------------------------------------------------------------------------