Skip to content
Snippets Groups Projects
Commit f7c1c677 authored by thomaswoehlke's avatar thomaswoehlke
Browse files

### 0.0.11 Release

* Issue #43 /europe/date_reported
* Issue #44 /europe/continent
* Issue #45 /europe/country
* Issue #46 /europe/data
* Issue #39 SQLalchemy instead of SQL: AllModelClasses.remove_all()
* Issue #40 SQLalchemy instead of SQL: EuropeDataImportTable.get_date_rep()
* Issue #41 SQLalchemy instead of SQL: EuropeDataImportTable.get_countries_of_continent()
* Issue #42 SQLalchemy instead of SQL: WhoGlobalDataImportTable.get_new_dates_as_array()
* Issue #47 refactor Routes from app.py to org...who,europe,...
* Issue #48 refactor Tasks from server_mq.py to org...who,europe,...
* Issue #49 EuropeServiceUpdate.__update_data_short()
* Issue #50 remove unused requirements from requirements.txt
parent 1e971e8f
No related branches found
No related tags found
No related merge requests found
......@@ -307,7 +307,6 @@ def url_europe_continent_all(page=1):
page_info=page_info)
@app.route('/europe/continent/<int:continent_id>/page/<int:page>')
@app.route('/europe/continent/<int:continent_id>')
def url_europe_continent_one(continent_id, page=1):
......
from logging.config import dictConfig
from celery import Celery, states
from database import db, app, my_logging_config
from org.woehlke.covid19.who.who_service import WhoService, who_service
from org.woehlke.covid19.europe.europe_service import EuropeService, europe_service
from server_mq import celery, who_run_update_task
if __name__ == '__main__':
dictConfig(my_logging_config)
db.create_all()
who_service = WhoService(db)
europe_service = EuropeService(db)
app.run(port=9090, debug=True)
#!/usr/bin/env bash
python app.py
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment