Releases: cmu-delphi/delphi-epidata
v0.2.5
v0.2.4
v0.2.3
v0.2.2
🧰 Development
Thanks to @github-actions, @korlaxxalrok, @krivard and @nmdefries
v0.2.1
v0.2.0
🚀 API Changes
- #564 create meta data covidcast file + use in /meta
🧰 Development
- #634 Release Delphi Epidata 0.2.0
- #629 build(deps): bump addressable from 2.7.0 to 2.8.0 in /docs
- #631 chore: sync main->dev
- #628 chore: sync main->dev
- #627 Release Delphi Epidata 0.1.4
Thanks to @dependabot, @dependabot[bot], @github-actions, @krivard and @sgratzl
v0.1.4
🧰 Development
- #627 Release Delphi Epidata 0.1.4
- #622 fix logger bug for batch issue upload
- #625 chore: sync main->dev
- #624 Release Delphi Epidata 0.1.3
Thanks to @TaraLakdawala, @github-actions, @krivard, @zhuoran-Cheng16 and Tara Lakdawala
v0.1.3
📕 Documentation
- #623 Update docs to refer to survey as COVID Trends and Impact Survey instead of COVID Symptom Survey
- #616 fix relative links in docs to absolute links
🧰 Development
- #624 Release Delphi Epidata 0.1.3
- #623 Update docs to refer to survey as COVID Trends and Impact Survey instead of COVID Symptom Survey
- #616 fix relative links in docs to absolute links
- #620 chore: sync main->dev
- #619 Release Delphi Epidata 0.1.2
Thanks to @capnrefsmmat, @github-actions, @krivard, @nmdefries and @sgratzl
v0.1.2
- #615 Add documentation for 7dav HHS signals
- #414 COVIDcast: update database definition to match BIGINT fix
🚀 API Changes
- #602 Fix covid hosp as_of to only return latest issue
🧰 Development
- #619 Release Delphi Epidata 0.1.2
- #611 Covidcast logging
- #600 ci: add release helper
- #605 Main -> dev sync
- #604 Release Delphi Epidata 0.1.1
- #603 feat: remove missing workaround
- #598 finish add SQL Query and pass the integrations tests
Thanks to @chinandrew, @github-actions, @krivard, @sgratzl, @zhuoran-Cheng16 and Tara Lakdawala
PyPI version 0.1.0
This is an update to the PyPI package delphi-epidata
, which can be found at https://pypi.org/project/delphi-epidata/.
This version includes explicit client and server version management, limited retry support to work around transient server problems in covidcast, and as_of support for the covid_hosp
endpoint.
It can be installed like this:
pip install delphi-epidata
Sample usage:
# import
from delphi_epidata import Epidata
import json
# query
print(json.dumps(Epidata.covid_hosp("pa", 20201101, as_of=20201201), indent=2))
{
"epidata": [
{
"state": "PA",
"issue": 20201116,
"date": 20201101,
"critical_staffing_shortage_today_yes": null,
"critical_staffing_shortage_today_no": null,
[...]
"inpatient_bed_covid_utilization": 0.04931332373463285,
"adult_icu_bed_covid_utilization": 0.110148849797023,
"adult_icu_bed_utilization": 0.7511181268087346
}
],
"result": 1,
"message": "success"
}