pyweatherflowudp


Namepyweatherflowudp JSON
Version 1.4.5 PyPI version JSON
download
home_pagehttps://github.com/briis/pyweatherflowudp
SummaryAn event-based asynchronous library to read UDP packets from Weatherflow weather systems on a local network without any reliance on the cloud.
upload_time2023-10-10 16:50:18
maintainer
docs_urlNone
authorNathan Spencer
requires_python>=3.8,<4.0
licenseMIT
keywords weatherflow udp asynchronous local
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![pypi](https://img.shields.io/pypi/v/pyweatherflowudp?style=for-the-badge)](https://pypi.org/project/pyweatherflowudp)
[![downloads](https://img.shields.io/pypi/dm/pyweatherflowudp?style=for-the-badge)](https://pypi.org/project/pyweatherflowudp)
[![Buy Me A Coffee/Beer](https://img.shields.io/badge/Buy_Me_A_☕/🍺-F16061?style=for-the-badge&logo=ko-fi&logoColor=white&labelColor=grey)](https://ko-fi.com/natekspencer)

# pyweatherflowudp

An event-based asynchronous library to read UDP packets from Weatherflow weather systems on a local network without any reliance on the cloud.

The atomic data provided by WeatherFlow sensors is all natively metric. To help facilitate transformations to other units or to perform calculations and comparisons, this module utilizes [Pint](https://pint.readthedocs.io/en/stable/)'s Quantity class as the type of most properties which have a unit of measurement. See the [Quantity](#Quantity) section below for more details.

This module utilizes [PsychroLib](https://github.com/psychrometrics/psychrolib) to help with additional weather calculations that are derived from the various data points provided by the actual WeatherFlow sensors. While WeatherFlow has these additional data points available via the app and rest API, they are unavailable via the low-level UDP packet data. And while a list of [derived metrics](https://weatherflow.github.io/Tempest/api/derived-metric-formulas.html) and the associated equations has been posted, they can be quite complex to implement, such as calculating wet bulb temperature. As such, PsychroLib is an invaluable resource since the work has already been done and it eliminates the need to write all the equations in this module (and potentially get them wrong). You may notice that some of these values aren't an exact match with what is shown in the WeatherFlow app because there are different formulas (some simpler, some more complex) to calculate derived weather metrics. This is because WeatherFlow and PsychroLib may have chosen one of the sometimes many different formulas to get the result desired. They should still be relatively close, however.

[![DOI](https://joss.theoj.org/papers/10.21105/joss.01137/status.svg)](https://doi.org/10.21105/joss.01137) [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.2537945.svg)](https://doi.org/10.5281/zenodo.2537945)

## Supported Devices

- Tempest
- Air (untested)
- Sky (untested)

## Usage

The primary way of interacting with this module, and the devices that are found with it, is via event subscriptions.

The classes and events which they currently support are outlined below, but you can also see an example tying this altogether in [demo.py](/demo.py).

### Client

#### `WeatherFlowListener`

- EVENT_DEVICE_DISCOVERED - emitted when a new device (Hub, Air, Sky or Tempest) is disovered for the first time

The classes and events in this section can be imported from `pyweatherflowudp.client`.

### Devices

#### `HubDevice`

- EVENT_LOAD_COMPLETE - emitted once when the hub has finished parsing a status update for the first time
- EVENT_STATUS_UPDATE - emitted each time a status update has been parsed by the hub, including immediately following an EVENT_LOAD_COMPLETE

#### `WeatherFlowSensorDevice` (base class for `AirDevice`, `SkyDevice` and `TempestDevice`)

- EVENT_LOAD_COMPLETE - emitted once when the sensor has finished parsing one status update and one observation for the first time
- EVENT_OBSERVATION - emitted each time an observation has been parsed by the sensor
- EVENT_STATUS_UPDATE - emitted each time a status update has been parsed by the sensor

#### `AirSensorType` (`AirDevice` / `TempestDevice`)

- EVENT_STRIKE - emitted when a lightning strike has been detected

#### `SkySensorType` (`SkyDevice` / `TempestDevice`)

- EVENT_RAIN_START - emitted when rain has been detected
- EVENT_RAPID_WIND - emitted every 3 seconds (or less frequently depending on battery voltage) to inform about current wind condtions

The classes and events in this section can be imported from `pyweatherflowudp.device`.

## Properties and Methods

### WeatherFlowListener

| property     | type | description                                                                              |
| ------------ | ---- | ---------------------------------------------------------------------------------------- |
| devices      | list | The known devices.                                                                       |
| hubs         | list | The known hubs.                                                                          |
| is_listening | bool | `True` if the listener is currently monitoring UDP packets on the network, else `False`. |
| sensors      | list | The known sensors.                                                                       |

### WeatherFlowDevice

Base for hubs and sensors.

| property          | type     | description                                                         |
| ----------------- | -------- | ------------------------------------------------------------------- |
| firmware_revision | str      | The current firmware revision of the device.                        |
| load_complete     | bool     | `True` if the device has parsed all initial updates, else `False`.  |
| model             | str      | The model of the device ("Hub", "Air", "Sky", "Tempest").           |
| rssi              | Quantity | The signal strength of the device in decibels.                      |
| serial_number     | str      | The serial number of the device.                                    |
| timestamp         | datetime | The UTC timestamp from the last status update.                      |
| up_since          | datetime | The UTC timestamp the device started up and has since been running. |
| uptime            | int      | The number of seconds the device has been up and running.           |

### HubDevice

| property    | type | description                         |
| ----------- | ---- | ----------------------------------- |
| reset_flags | list | The current reset flags of the hub. |

### WeatherFlowSensorDevice

Base for sensors.

| property        | type     | description                                           |
| --------------- | -------- | ----------------------------------------------------- |
| battery         | Quantity | The current battery voltage.                          |
| hub_rssi        | Quantity | The signal strength of the hub in decibels.           |
| hub_sn          | str      | The serial number of the hub the sensor belongs to.   |
| last_report     | datetime | The UTC timestamp from the last observation.          |
| sensor_status   | list     | The list of issues the sensor is currently reporting. |
| report_interval | Quantity | The report interval in minutes.                       |
| reset_flags     | list     | The current reset flags of the hub.                   |

### AirSensorType

Base for "air" sensor measurements (Air/Tempest).

| property                          | type                 | description                                               |
| --------------------------------- | -------------------- | --------------------------------------------------------- |
| air_temperature                   | Quantity             | The current air temperature in degrees Celsius.           |
| last_lightning_strike_event       | LightningStrikeEvent | The last lightning strike event.                          |
| lightning_strike_average_distance | Quantity             | The average distance for lightning strikes in kilometers. |
| lightning_strike_count            | int                  | The number of lightning strikes.                          |
| relative_humidity                 | Quantity             | The relative humidity percentage.                         |
| station_pressure                  | Quantity             | The observed station pressure in millibars.               |
| air_density\*                     | Quantity             | The calculated air density in kilograms per cubic meter.  |
| delta_t\*                         | Quantity             | The calculated Delta T in delta degrees Celsius.          |
| dew_point_temperature\*           | Quantity             | The calculated dew point temperature in degrees Celsius.  |
| heat_index\*                      | Quantity             | The calculated heat index in degrees Celsius.             |
| vapor_pressure\*                  | Quantity             | The calculated vapor pressure in millibars.               |
| wet_bulb_temperature\*            | Quantity             | The calculated wet bulb temperature in degrees Celsius.   |

\* Indicates derived properties

| method                       | input (type)        | return   | description                                                                                                             |
| ---------------------------- | ------------------- | -------- | ----------------------------------------------------------------------------------------------------------------------- |
| calculate_cloud_base         | altitude (Quantity) | Quantity | Calculate the estimated altitude above mean sea level (AMSL) to the cloud base.                                         |
| calculate_freezing_level     | altitude (Quantity) | Quantity | Calculate the estimated altitude above mean sea level (AMSL) where the temperature is at the freezing point (0°C/32°F). |
| calculate_sea_level_pressure | altitude (Quantity) | Quantity | Calculate the sea level pressure in millibars (mbar).                                                                   |

### SkySensorType

Base for "sky" sensor measurements (Sky/Tempest).

| property                          | type              | description                                                                        |
| --------------------------------- | ----------------- | ---------------------------------------------------------------------------------- |
| illuminance                       | Quantity          | The current illuminance in Lux.                                                    |
| last_rain_start_event             | RainStartEvent    | The last rain start event.                                                         |
| last_wind_event                   | WindEvent         | The last wind event.                                                               |
| precipitation_type                | PrecipitationType | The current precipitation type: (NONE, RAIN, HAIL or RAIN_HAIL).                   |
| rain_accumulation_previous_minute | Quantity          | The rain accumulation from the previous minute in millimeters.                     |
| rain_rate\*                       | Quantity          | The rain rate in millimeters per hour (based on the previous minute accumulation). |
| solar_radiation                   | Quantity          | The solar radiation in Watts per cubic meter.                                      |
| uv                                | int               | The current UV index.                                                              |
| wind_average                      | Quantity          | The wind speed average over the report interval in meters per second.              |
| wind_direction                    | Quantity          | The wind direction over the report interval in degrees.                            |
| wind_direction_cardinal           | string            | The wind direction cardinal (16-wind compass rose).                                |
| wind_gust                         | Quantity          | The wind gust (maximum 3 second sample) in meters per second.                      |
| wind_lull                         | Quantity          | The wind lull (minimum 3 second sample) in meters per second.                      |
| wind_sample_interval              | Quantity          | The wind sample interval in seconds.                                               |
| wind_speed                        | Quantity          | The wind speed in meters per second.                                               |

\* Indicates derived properties

### TempestDevice

| property                 | type     | description                                                 |
| ------------------------ | -------- | ----------------------------------------------------------- |
| feels_like_temperature\* | Quantity | The calculated "feels like" temperature in degrees Celsius. |
| wind_chill_temperature\* | Quantity | The calculated wind chill temperature in degrees Celsius.   |

\* Indicates derived properties

### Quantity

The `pint.Quantity` class has been utilized for device properties which are associated with a unit of measurement. This allows a conversion from the native metric unit to another of the user's choice such as degrees Celsius to degrees Fahrenheit, which produces another `pint.Quantity`:

```python
device.air_temperature.to("degF")
```

To retrieve only the numeric value of a property, you can just append a `.magnitude` (or `.m` short form) like:

```python
device.air_temperature.m
```

You can also retrieve only the units portion of a property with `.units` (or `.u` short form) like:

```python
device.air_temperature.u
```

Check out the [Pint docs](https://pint.readthedocs.io/en/stable/#user-guide) for more tips.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/briis/pyweatherflowudp",
    "name": "pyweatherflowudp",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8,<4.0",
    "maintainer_email": "",
    "keywords": "WeatherFlow,UDP,asynchronous,local",
    "author": "Nathan Spencer",
    "author_email": "natekspencer@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/df/ec/554b6b1a08f9d2c1ec372a111b752db224b2ef795a900f11dbea775177aa/pyweatherflowudp-1.4.5.tar.gz",
    "platform": null,
    "description": "[![pypi](https://img.shields.io/pypi/v/pyweatherflowudp?style=for-the-badge)](https://pypi.org/project/pyweatherflowudp)\n[![downloads](https://img.shields.io/pypi/dm/pyweatherflowudp?style=for-the-badge)](https://pypi.org/project/pyweatherflowudp)\n[![Buy Me A Coffee/Beer](https://img.shields.io/badge/Buy_Me_A_\u2615/\ud83c\udf7a-F16061?style=for-the-badge&logo=ko-fi&logoColor=white&labelColor=grey)](https://ko-fi.com/natekspencer)\n\n# pyweatherflowudp\n\nAn event-based asynchronous library to read UDP packets from Weatherflow weather systems on a local network without any reliance on the cloud.\n\nThe atomic data provided by WeatherFlow sensors is all natively metric. To help facilitate transformations to other units or to perform calculations and comparisons, this module utilizes [Pint](https://pint.readthedocs.io/en/stable/)'s Quantity class as the type of most properties which have a unit of measurement. See the [Quantity](#Quantity) section below for more details.\n\nThis module utilizes [PsychroLib](https://github.com/psychrometrics/psychrolib) to help with additional weather calculations that are derived from the various data points provided by the actual WeatherFlow sensors. While WeatherFlow has these additional data points available via the app and rest API, they are unavailable via the low-level UDP packet data. And while a list of [derived metrics](https://weatherflow.github.io/Tempest/api/derived-metric-formulas.html) and the associated equations has been posted, they can be quite complex to implement, such as calculating wet bulb temperature. As such, PsychroLib is an invaluable resource since the work has already been done and it eliminates the need to write all the equations in this module (and potentially get them wrong). You may notice that some of these values aren't an exact match with what is shown in the WeatherFlow app because there are different formulas (some simpler, some more complex) to calculate derived weather metrics. This is because WeatherFlow and PsychroLib may have chosen one of the sometimes many different formulas to get the result desired. They should still be relatively close, however.\n\n[![DOI](https://joss.theoj.org/papers/10.21105/joss.01137/status.svg)](https://doi.org/10.21105/joss.01137) [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.2537945.svg)](https://doi.org/10.5281/zenodo.2537945)\n\n## Supported Devices\n\n- Tempest\n- Air (untested)\n- Sky (untested)\n\n## Usage\n\nThe primary way of interacting with this module, and the devices that are found with it, is via event subscriptions.\n\nThe classes and events which they currently support are outlined below, but you can also see an example tying this altogether in [demo.py](/demo.py).\n\n### Client\n\n#### `WeatherFlowListener`\n\n- EVENT_DEVICE_DISCOVERED - emitted when a new device (Hub, Air, Sky or Tempest) is disovered for the first time\n\nThe classes and events in this section can be imported from `pyweatherflowudp.client`.\n\n### Devices\n\n#### `HubDevice`\n\n- EVENT_LOAD_COMPLETE - emitted once when the hub has finished parsing a status update for the first time\n- EVENT_STATUS_UPDATE - emitted each time a status update has been parsed by the hub, including immediately following an EVENT_LOAD_COMPLETE\n\n#### `WeatherFlowSensorDevice` (base class for `AirDevice`, `SkyDevice` and `TempestDevice`)\n\n- EVENT_LOAD_COMPLETE - emitted once when the sensor has finished parsing one status update and one observation for the first time\n- EVENT_OBSERVATION - emitted each time an observation has been parsed by the sensor\n- EVENT_STATUS_UPDATE - emitted each time a status update has been parsed by the sensor\n\n#### `AirSensorType` (`AirDevice` / `TempestDevice`)\n\n- EVENT_STRIKE - emitted when a lightning strike has been detected\n\n#### `SkySensorType` (`SkyDevice` / `TempestDevice`)\n\n- EVENT_RAIN_START - emitted when rain has been detected\n- EVENT_RAPID_WIND - emitted every 3 seconds (or less frequently depending on battery voltage) to inform about current wind condtions\n\nThe classes and events in this section can be imported from `pyweatherflowudp.device`.\n\n## Properties and Methods\n\n### WeatherFlowListener\n\n| property     | type | description                                                                              |\n| ------------ | ---- | ---------------------------------------------------------------------------------------- |\n| devices      | list | The known devices.                                                                       |\n| hubs         | list | The known hubs.                                                                          |\n| is_listening | bool | `True` if the listener is currently monitoring UDP packets on the network, else `False`. |\n| sensors      | list | The known sensors.                                                                       |\n\n### WeatherFlowDevice\n\nBase for hubs and sensors.\n\n| property          | type     | description                                                         |\n| ----------------- | -------- | ------------------------------------------------------------------- |\n| firmware_revision | str      | The current firmware revision of the device.                        |\n| load_complete     | bool     | `True` if the device has parsed all initial updates, else `False`.  |\n| model             | str      | The model of the device (\"Hub\", \"Air\", \"Sky\", \"Tempest\").           |\n| rssi              | Quantity | The signal strength of the device in decibels.                      |\n| serial_number     | str      | The serial number of the device.                                    |\n| timestamp         | datetime | The UTC timestamp from the last status update.                      |\n| up_since          | datetime | The UTC timestamp the device started up and has since been running. |\n| uptime            | int      | The number of seconds the device has been up and running.           |\n\n### HubDevice\n\n| property    | type | description                         |\n| ----------- | ---- | ----------------------------------- |\n| reset_flags | list | The current reset flags of the hub. |\n\n### WeatherFlowSensorDevice\n\nBase for sensors.\n\n| property        | type     | description                                           |\n| --------------- | -------- | ----------------------------------------------------- |\n| battery         | Quantity | The current battery voltage.                          |\n| hub_rssi        | Quantity | The signal strength of the hub in decibels.           |\n| hub_sn          | str      | The serial number of the hub the sensor belongs to.   |\n| last_report     | datetime | The UTC timestamp from the last observation.          |\n| sensor_status   | list     | The list of issues the sensor is currently reporting. |\n| report_interval | Quantity | The report interval in minutes.                       |\n| reset_flags     | list     | The current reset flags of the hub.                   |\n\n### AirSensorType\n\nBase for \"air\" sensor measurements (Air/Tempest).\n\n| property                          | type                 | description                                               |\n| --------------------------------- | -------------------- | --------------------------------------------------------- |\n| air_temperature                   | Quantity             | The current air temperature in degrees Celsius.           |\n| last_lightning_strike_event       | LightningStrikeEvent | The last lightning strike event.                          |\n| lightning_strike_average_distance | Quantity             | The average distance for lightning strikes in kilometers. |\n| lightning_strike_count            | int                  | The number of lightning strikes.                          |\n| relative_humidity                 | Quantity             | The relative humidity percentage.                         |\n| station_pressure                  | Quantity             | The observed station pressure in millibars.               |\n| air_density\\*                     | Quantity             | The calculated air density in kilograms per cubic meter.  |\n| delta_t\\*                         | Quantity             | The calculated Delta T in delta degrees Celsius.          |\n| dew_point_temperature\\*           | Quantity             | The calculated dew point temperature in degrees Celsius.  |\n| heat_index\\*                      | Quantity             | The calculated heat index in degrees Celsius.             |\n| vapor_pressure\\*                  | Quantity             | The calculated vapor pressure in millibars.               |\n| wet_bulb_temperature\\*            | Quantity             | The calculated wet bulb temperature in degrees Celsius.   |\n\n\\* Indicates derived properties\n\n| method                       | input (type)        | return   | description                                                                                                             |\n| ---------------------------- | ------------------- | -------- | ----------------------------------------------------------------------------------------------------------------------- |\n| calculate_cloud_base         | altitude (Quantity) | Quantity | Calculate the estimated altitude above mean sea level (AMSL) to the cloud base.                                         |\n| calculate_freezing_level     | altitude (Quantity) | Quantity | Calculate the estimated altitude above mean sea level (AMSL) where the temperature is at the freezing point (0\u00b0C/32\u00b0F). |\n| calculate_sea_level_pressure | altitude (Quantity) | Quantity | Calculate the sea level pressure in millibars (mbar).                                                                   |\n\n### SkySensorType\n\nBase for \"sky\" sensor measurements (Sky/Tempest).\n\n| property                          | type              | description                                                                        |\n| --------------------------------- | ----------------- | ---------------------------------------------------------------------------------- |\n| illuminance                       | Quantity          | The current illuminance in Lux.                                                    |\n| last_rain_start_event             | RainStartEvent    | The last rain start event.                                                         |\n| last_wind_event                   | WindEvent         | The last wind event.                                                               |\n| precipitation_type                | PrecipitationType | The current precipitation type: (NONE, RAIN, HAIL or RAIN_HAIL).                   |\n| rain_accumulation_previous_minute | Quantity          | The rain accumulation from the previous minute in millimeters.                     |\n| rain_rate\\*                       | Quantity          | The rain rate in millimeters per hour (based on the previous minute accumulation). |\n| solar_radiation                   | Quantity          | The solar radiation in Watts per cubic meter.                                      |\n| uv                                | int               | The current UV index.                                                              |\n| wind_average                      | Quantity          | The wind speed average over the report interval in meters per second.              |\n| wind_direction                    | Quantity          | The wind direction over the report interval in degrees.                            |\n| wind_direction_cardinal           | string            | The wind direction cardinal (16-wind compass rose).                                |\n| wind_gust                         | Quantity          | The wind gust (maximum 3 second sample) in meters per second.                      |\n| wind_lull                         | Quantity          | The wind lull (minimum 3 second sample) in meters per second.                      |\n| wind_sample_interval              | Quantity          | The wind sample interval in seconds.                                               |\n| wind_speed                        | Quantity          | The wind speed in meters per second.                                               |\n\n\\* Indicates derived properties\n\n### TempestDevice\n\n| property                 | type     | description                                                 |\n| ------------------------ | -------- | ----------------------------------------------------------- |\n| feels_like_temperature\\* | Quantity | The calculated \"feels like\" temperature in degrees Celsius. |\n| wind_chill_temperature\\* | Quantity | The calculated wind chill temperature in degrees Celsius.   |\n\n\\* Indicates derived properties\n\n### Quantity\n\nThe `pint.Quantity` class has been utilized for device properties which are associated with a unit of measurement. This allows a conversion from the native metric unit to another of the user's choice such as degrees Celsius to degrees Fahrenheit, which produces another `pint.Quantity`:\n\n```python\ndevice.air_temperature.to(\"degF\")\n```\n\nTo retrieve only the numeric value of a property, you can just append a `.magnitude` (or `.m` short form) like:\n\n```python\ndevice.air_temperature.m\n```\n\nYou can also retrieve only the units portion of a property with `.units` (or `.u` short form) like:\n\n```python\ndevice.air_temperature.u\n```\n\nCheck out the [Pint docs](https://pint.readthedocs.io/en/stable/#user-guide) for more tips.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "An event-based asynchronous library to read UDP packets from Weatherflow weather systems on a local network without any reliance on the cloud.",
    "version": "1.4.5",
    "project_urls": {
        "Homepage": "https://github.com/briis/pyweatherflowudp",
        "Repository": "https://github.com/briis/pyweatherflowudp"
    },
    "split_keywords": [
        "weatherflow",
        "udp",
        "asynchronous",
        "local"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e0264cf4ef16aaf1377fbbed711872a0abec0285a7ee397b9c8c99b4e75bf2a5",
                "md5": "3275efeb95080107468ea37b96c2191e",
                "sha256": "78e7c4f888960fdae1a6868a3dfd90f0440c5d75cf345e615172746ad1bfce20"
            },
            "downloads": -1,
            "filename": "pyweatherflowudp-1.4.5-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "3275efeb95080107468ea37b96c2191e",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8,<4.0",
            "size": 21519,
            "upload_time": "2023-10-10T16:50:16",
            "upload_time_iso_8601": "2023-10-10T16:50:16.143080Z",
            "url": "https://files.pythonhosted.org/packages/e0/26/4cf4ef16aaf1377fbbed711872a0abec0285a7ee397b9c8c99b4e75bf2a5/pyweatherflowudp-1.4.5-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dfec554b6b1a08f9d2c1ec372a111b752db224b2ef795a900f11dbea775177aa",
                "md5": "a70ad1f301acab0c129e802268c4b58e",
                "sha256": "2d693f809c1780fed448b1d97836f0f873e4fbe3fefe1e054bd7f7c5828cf72b"
            },
            "downloads": -1,
            "filename": "pyweatherflowudp-1.4.5.tar.gz",
            "has_sig": false,
            "md5_digest": "a70ad1f301acab0c129e802268c4b58e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8,<4.0",
            "size": 20543,
            "upload_time": "2023-10-10T16:50:18",
            "upload_time_iso_8601": "2023-10-10T16:50:18.390174Z",
            "url": "https://files.pythonhosted.org/packages/df/ec/554b6b1a08f9d2c1ec372a111b752db224b2ef795a900f11dbea775177aa/pyweatherflowudp-1.4.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-10 16:50:18",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "briis",
    "github_project": "pyweatherflowudp",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "pyweatherflowudp"
}
        
Elapsed time: 0.14441s