get_status(location)ΒΆ

When called, this function will return a dictionary containing information about the given location. For example:

>>> from miami_api import *
>>> get_status('tower_to_go')
{
"is_open": false,
"time": "00:46",
"name": "Tower To Go",
"hours": [
    {
        "open": 1900,
        "is_open": false,
        "close": 2359
    }
],
"id": "tower_to_go"
}