https://github.com/seekaddo/euro-million-data
Extracting all the euro million data from 2004 to 2018
https://github.com/seekaddo/euro-million-data
euro-million java-8 lottery machine-learning
Last synced: 4 months ago
JSON representation
Extracting all the euro million data from 2004 to 2018
- Host: GitHub
- URL: https://github.com/seekaddo/euro-million-data
- Owner: seekaddo
- License: mit
- Created: 2018-07-08T21:56:22.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-07-22T23:42:21.000Z (over 7 years ago)
- Last Synced: 2023-09-03T21:47:17.872Z (about 2 years ago)
- Topics: euro-million, java-8, lottery, machine-learning
- Language: Java
- Size: 16.6 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# euro-million-data (Unofficial REST API for EuroMillion Data)
Extracting all the euro million data from 2004 to date for machine learning algorithm
Build and tested on the following CI platforms.
| OSX | Linux | Windows |
| --- | ----- | ------- |
| [](https://travis-ci.org/seekaddo/euro-million-data) | [](https://circleci.com/gh/seekaddo/euro-million-data) | [](https://ci.appveyor.com/project/seekaddo/euro-million-data/branch/master) |
Just for fun.
REST API Server will be hosted on Heroku with DynamoDB support.
For more infomation about the DynamoDB Java API, checkout the JavaDoc [here](https://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/overview-summary.html)
Nothing here at the moment to test. Still under development.
Extracting raw data from https://www.euro-millions.com/results-archive-2018
REST-API not fully complete at the moment. Project still on going.
Sample Rest-api Data can be found here
[https://euro-mil-restapi.seekaddo.me/api_v1.0/euro-million](https://euro-mil-restapi.seekaddo.me/api_v1.0/euro-million).
which contains the data from 31-12-2004 to 2010.
### Rest-API Data
#### sample from 31-12-2004
Have a look here [31-12-2004](https://www.euro-millions.com/results/31-12-2004)
```bash
DrawNr: Is the Draw number
Date: lol
data: contains balls drawn that is the 5 balls with 2 lucky stars
```
```json
{
"drawNr": 47,
"date": "31-12-2004",
"data": [
{
"balls_drawn": [
"7",
"8",
"24",
"25",
"47"
],
"lucky_stars": [
"8",
"9"
]
}
]
}
```