Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
flask-covid19
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Thomas Wöhlke
flask-covid19
Commits
be8d3e3c
Commit
be8d3e3c
authored
4 years ago
by
thomaswoehlke
Browse files
Options
Downloads
Patches
Plain Diff
start DEV 0.0.15
parent
5607242a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/covid19/blueprints/vaccination/vaccination_model_import.py
+9
-8
9 additions, 8 deletions
...ovid19/blueprints/vaccination/vaccination_model_import.py
with
9 additions
and
8 deletions
src/covid19/blueprints/vaccination/vaccination_model_import.py
+
9
−
8
View file @
be8d3e3c
...
@@ -93,11 +93,11 @@ class VaccinationImport(db.Model):
...
@@ -93,11 +93,11 @@ class VaccinationImport(db.Model):
def
get_daterep_missing_in_vaccination_data
(
cls
):
def
get_daterep_missing_in_vaccination_data
(
cls
):
sql_query
=
"""
sql_query
=
"""
select
select
datum
datum
from
from
vaccination_import
vaccination_import
where
where
dat
e_reported
dat
um
not in (
not in (
select
select
distinct
distinct
...
@@ -105,15 +105,16 @@ class VaccinationImport(db.Model):
...
@@ -105,15 +105,16 @@ class VaccinationImport(db.Model):
from
from
vaccination_data
vaccination_data
left join
left join
vaccination_
im
port
vaccination_
date_re
port
ed
on
on
vaccination_data.date_reported_id=vaccination_
im
port.id
vaccination_data.date_reported_id=vaccination_
date_re
port
ed
.id
)
)
group by
group by
vaccination_import.dat
e_reported
vaccination_import.dat
um
order by dat
e_reported
desc
order by dat
um
desc
"""
"""
new_dates
=
[]
new_dates
=
[]
for
item
in
db
.
session
.
execute
(
sql_query
):
for
item
,
in
db
.
session
.
execute
(
sql_query
):
new_dates
.
append
(
item
[
'
date_reported
'
])
new_dates
.
append
(
item
)
#new_dates.append(item['date_reported'])
return
new_dates
return
new_dates
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment