Create a Flask Web Service that will generate lottery numbers. It should have the following capabilities. It should generate 6 numbers from 1-58
>All dates must be given in YYYY-MM-DD format
>Random numbers are generated with the date as the seed.
Get winning numbers from start date to end date
> URL: winning_numbers?start_date=<start_data>&end_data=<end_date>
> if start and/or end date are not defined, the default value is yesterday
> start date and end data cannot be greater than yesterday
> output is a json with this format
{
<date>: [1, 2, 3, 4, 5, 6],
<date>: [1, 2, 3, 4, 5, 6],
...
}