-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
102 additions
and
123 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Schraders Bistro openmensa parser | ||
|
||
This is an openmensa parser for [Schraders Bistro](https://ein-anderes-mahl.de/bistro-babelsberg/). | ||
|
||
To run it locally, follow these steps: | ||
1. Install dependencies (in a virtual env) with `pip install -r requirements.txt` | ||
2. Run the server with `python -m flask --app openmensa_server run` | ||
3. Navigate to `localhost:5000/feed` | ||
|
||
You can also run the docker container locally: | ||
|
||
```shell | ||
docker build -t openmensa-schrader . | ||
docker run -p 5000:5000 openmensa-schrader | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
pdfquery | ||
pyopenmensa | ||
python-dateutil | ||
requests | ||
flask | ||
flask | ||
pdf2image | ||
pyocr | ||
pytesseract |