https://github.com/mrsunshyne/mauritius-dataset-fuel
Mauritius Fuel Open Dataset
https://github.com/mrsunshyne/mauritius-dataset-fuel
Last synced: 3 months ago
JSON representation
Mauritius Fuel Open Dataset
- Host: GitHub
- URL: https://github.com/mrsunshyne/mauritius-dataset-fuel
- Owner: MrSunshyne
- Created: 2022-02-07T06:07:53.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-25T00:25:48.000Z (8 months ago)
- Last Synced: 2024-10-25T06:20:10.425Z (8 months ago)
- Language: TypeScript
- Homepage:
- Size: 417 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mauritius Dataset for Fuel Prices
This repo keep an updated dataset of the Mauritius fuel prices by getting them from the State Trading Cooporation website using a Github Action at a regular
interval.
## Dataset
### [View Dataset](https://github.com/MrSunshyne/mauritius-fuel-dataset/blob/main/data/latest.json)
The aim is to provide a hassle-free way to use the data to build applications.
## Example applications
- Mauritius Fuel Prices - [Click to view](https://mauritius-fuel-prices.netlify.app/)
## Disclaimers
- The maintainer of this repository is NOT affiliated with the STC.
- The data is automatically fetched from the STC website but not provided directly by them.
- The page from which the data is fetched is [publicly available](https://www.stcmu.com/ppm/retail-prices).
- The data is fetched at a rate of 1 time every 24hours.
- The data is made available here under fair use.## FAQ
Why not use the STC website directly?
- Although the data is available publicly and for free, it is not in a suitable open format that would enable developers or students to build applications reliablyIn which format is the data provided?
- JSON
- The shape is as follows:```js
[
{
'date': string
'petrol': string
'diesel': string
},
{
...
}
]
```