Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zastrixarundell/CovidParser
A relay server for queries and blazing fast response about the situation of Covid19.
https://github.com/zastrixarundell/CovidParser
covd-19 fast filters json phoenix query relay-server restful-api
Last synced: 4 days ago
JSON representation
A relay server for queries and blazing fast response about the situation of Covid19.
- Host: GitHub
- URL: https://github.com/zastrixarundell/CovidParser
- Owner: zastrixarundell
- Created: 2020-03-24T17:09:47.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T16:59:23.000Z (almost 2 years ago)
- Last Synced: 2024-08-02T05:12:10.027Z (3 months ago)
- Topics: covd-19, fast, filters, json, phoenix, query, relay-server, restful-api
- Language: Elixir
- Size: 1.62 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-blazingly-fast - CovidParser - A relay server for queries and blazing fast response about the situation of Covid19. (Elixir)
README
# CovidParser
A relay server for queries and blazing fast response about the situation of Covid19.![Covid19](https://raw.githubusercontent.com/ZastrixArundell/CovidParser/master/assets/static/images/covid-19.png "Covid19")
## How does this work?
CovidParses gets the data from [john_hopkins_csse_data](https://wuflu.banic.stream/john_hopkins_csse_data.json) or any site specified with `COVID_DATA_URL` (**The structure of the JSON response needs to be the same as csse_data!**) and stores in the ETS for fast response.It as wells allows for the end user to user parameters in the URL for specified filters on the data.
## General usage via REST and filters.
If you go to `/api` you will get all of the whole bulky JSON message. If you want to use as less processing on the client side you can then use the 2 parameters in the query, `date` and `country`.* `/api?country=sweden` will respond with every data which corresponds to Sweden.
* `/api?country=china` will repsond with every data which corresponds to China and every province/state in it. This only does 0(1) filtering.
* `/api?date=2020-03-24` will respond with every data which corresponds to the data 24th March 2020. (This checks the data in the format `YYYY-MM-DD HH-mm GMT` for highest precision).
* `/api?country=serbia&date=2020-03-24%2014` will respond with every data corresponding to Serbia and with the time of `2020-03-04 14` (14 hours).## In which format should I expect the data?
You can except data in this format:
```json
{
"latest_fetch": "2020-03-24 15:16 UTC",
"timestamped_data": [
{
"date": "2020-03-24 14:30 UTC",
"areas": [
{
"name": "China",
"real_name": "China",
"stats": {
"confirmed": 81588,
"deaths": 3281,
"recoveries": 73279
}
},
{
"name": "Netherlands",
"real_name": "Netherlands",
"stats": {
"confirmed": 5578,
"deaths": 277,
"recoveries": 3
}
}
]
}
]
}
```
* `latest_fetch` is the added JSON param which shows the time of when the server performed the latest check.
* ***Just to note:*** *some areas have sub-areas*.## To start your Phoenix server:
* Install dependencies with `mix deps.get`
* Install Node.js dependencies with `cd assets && npm install`
* Start Phoenix endpoint with `mix phx.server`Now you can visit [`localhost:4000`](http://localhost:4000) from your browser.
Ready to run in production? Please [check our deployment guides](https://hexdocs.pm/phoenix/deployment.html).
## Learn more
* Official website: https://www.phoenixframework.org/
* Guides: https://hexdocs.pm/phoenix/overview.html
* Docs: https://hexdocs.pm/phoenix
* Forum: https://elixirforum.com/c/phoenix-forum
* Source: https://github.com/phoenixframework/phoenix