Skip to main content

An async wrapper for DarkSky

Project description

DarkSky - Async Python 3 Library

Designed with native asyncio support, this libary is better suited to those who need better concurrency support than running requests inside run_in_executor. As this is an asyncio based libary, we do not plan to support Python 2. The minimum Python version needed is 3.5, you can download it here

Usage

You can use several methods to use this libary, including directly calling the helper function forecast. This offers no setup but is significantly slower due to the need to create the client in the background everytime. Its better to just create the client and save it to a variable than using this function.

Client example:

import asyncio
import darksky_async

async def main():
    client = darksky_async.Client("DarkSky key goes here")

    weather = await client.forecast(
        37.8267, # latitude
        -122.4233 # longitude
    )
    print(weather.currently)
    print(weather.daily.data[0].timeLocal)
    # time-based items have a local time
    # version that allows you to convert between the two easily

loop = asyncio.get_event_loop()

loop.run_until_complete(client.forecast(latitude, longitude))

Quick example:

import asyncio
import darksky_async

async def example_function():
  result = await darksky_async.forecast(key, latitude, longitude, exclude=['minutely', 'hourly'], units='si')

loop = asyncio.get_event_loop()

loop.run_until_complete(example_function())

Extra features

All time-based entries for DataPoint have a local version as well. Thanks to PyTz we can convert the datetime to the local time for quicker and easier access of time. All you need to do to access this local time is append Local to any time-based datapoint:

weather = await client.forecast(37.8267, -122.4233)

utc_time = weather.daily.data[0].sunriseTime
>>> '2pm' # Abbreviated for simplicity
local = weather.daily.data[0].sunriseTimeLocal
>>> '6am' # -8 hours behind UTC, this time is accurate for Los Angeles, USA

This libary also keeps a track of how much is due. When running a forecast, you can check the current amount due by doing:

weather = await client.forecast(lat, lon)
print(weather.total_due)

The returned amount will be in dollars as per the terms of service here As a note: this is only the daily cost. We cannot track the actual amount owed due to DarkSky having that information on lock down.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

darksky_async-1.0.2.tar.gz (7.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

darksky_async-1.0.2-py2.py3-none-any.whl (10.7 kB view details)

Uploaded Python 2Python 3

File details

Details for the file darksky_async-1.0.2.tar.gz.

File metadata

  • Download URL: darksky_async-1.0.2.tar.gz
  • Upload date:
  • Size: 7.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.1

File hashes

Hashes for darksky_async-1.0.2.tar.gz
Algorithm Hash digest
SHA256 50bfb8491b4cc09ae1a9834d0a939e35cd445aff1466816cd38770fa41dbc8ea
MD5 cdab24408cac95f84de4c1d8f9937c13
BLAKE2b-256 6c39d12d5d6ca15e254bb8313a0cb180b90fabc5a882913aebaceb2df1c90303

See more details on using hashes here.

File details

Details for the file darksky_async-1.0.2-py2.py3-none-any.whl.

File metadata

  • Download URL: darksky_async-1.0.2-py2.py3-none-any.whl
  • Upload date:
  • Size: 10.7 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.1

File hashes

Hashes for darksky_async-1.0.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 df4b75d6b3cdcf9cedf271be4399aed9e1736fa7f31d8086f0738585f6a16b6d
MD5 fe581439ad7ecddff5daf622be8f33d2
BLAKE2b-256 0e4e975a318e88927034f291f36db7078feae6797b165ea54769a4ce6dd70f99

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page