Skip to main content

Asyncio Duke Energy

Project description

aiodukeenergy-co

CI Status Test coverage percentage

Poetry Ruff pre-commit

PyPI Version Supported Python versions License


Source Code: https://github.com/crash0verride11/aiodukeenergy


Asyncio Duke Energy

Installation

Install this via pip (or your favourite package manager):

pip install aiodukeenergy-co

Usage

Duke Energy uses Auth0 with CAPTCHA protection which blocks automated logins. Authentication requires a browser-based OAuth flow using a Chrome extension to capture the mobile app's custom redirect URL.

Setup

  1. Add the appropriate extension for your browser:

    chrome-extension

    • Download the latest chrome-extension.zip from releases (or use ./chrome-extension/ from source)
    • Extract the zip file
    • Open Chrome and navigate to chrome://extensions/
    • Enable "Developer mode"
    • Click "Load unpacked" and select the extracted folder

    safari-extension

    Requires XCode and a free developer account

    • Download the latest safari-extension.zip from releases (or use ./safari-extension/ from source)
    • Extract the zip file
    • Open the Xcode project
    • Go to project settings and set your free developer account as the 'Team' for both Targets (com.local.duke-energy-oauth-helper and com.local.duke-energy-oauth-helper.Extension). Also ensure 'Signing Certificate' is set to 'Development'
    • Quit Safari if open and build the extension
    • Open Safai and enable the extension in Safari settings
    • Build the extension again
    • Enable access to all URLs or a specific URL (https://login.duke-energy.com) in the extension settings
  2. Run the browser authentication script:

    cd examples
    python browser_auth.py
    
  3. The script will:

    • Open your browser to Duke Energy's login page
    • After you log in, the extension captures the authorization code
    • Exchange the code for API tokens
    • Save tokens to duke_tokens.json

Using Tokens

Once you have tokens, use them with the library:

import asyncio
import aiohttp
from aiodukeenergy_co import Auth0Client, DukeEnergy, DukeEnergyAuth


async def main():
    # Option 1: Load from token file
    import json

    with open("duke_tokens.json") as f:
        tokens = json.load(f)

    async with aiohttp.ClientSession() as session:
        auth0_client = Auth0Client(session)
        auth = DukeEnergyAuth(
            session,
            auth0_client,
            access_token=tokens["access_token"],
            refresh_token=tokens.get("refresh_token"),
            id_token=tokens.get("id_token"),
        )

        client = DukeEnergy(auth)

        accounts = await client.get_accounts()
        print(accounts)

        meters = await client.get_meters()
        for serial, meter in meters.items():
            print(f"Meter: {serial} ({meter['serviceType']})")


asyncio.run(main())

Browser OAuth Flow (Programmatic)

You can also integrate the OAuth flow into your own application:

import asyncio
import webbrowser
import aiohttp
from aiodukeenergy_co import Auth0Client, DukeEnergy, DukeEnergyAuth


async def main():
    async with aiohttp.ClientSession() as session:
        auth0_client = Auth0Client(session)
        auth = DukeEnergyAuth(session, auth0_client)

        # Step 1: Get authorization URL with PKCE
        auth_url, state, code_verifier = auth0_client.get_authorization_url()

        # Step 2: Open browser for user login
        webbrowser.open(auth_url)

        # Step 3: Get the authorization code (captured by Chrome extension)
        code = input("Enter the authorization code: ")

        # Step 4: Exchange code for tokens
        await auth.authenticate_with_code(code, code_verifier)

        # Now you can make API calls
        client = DukeEnergy(auth)
        accounts = await client.get_accounts()
        print(accounts)


asyncio.run(main())

Available Classes

  • Auth0Client - OAuth2/OIDC client for Duke Energy's Auth0
    • get_authorization_url() - Generate browser OAuth URL with PKCE (returns url, state, code_verifier)
    • exchange_code(code, code_verifier) - Exchange authorization code for tokens
    • refresh_token(refresh_token) - Refresh expired tokens
  • AbstractDukeEnergyAuth - Abstract base class for auth providers
    • async_get_id_token() - Get a valid ID token (abstract)
    • async_get_access_token() - Get a valid access token
    • request(method, url, **kwargs) - Make authenticated requests
  • DukeEnergyAuth - Concrete auth implementation using Auth0Client
    • authenticate_with_code(code, code_verifier) - Complete OAuth flow
    • token - Property to get current token dictionary
  • DukeEnergy - API client for Duke Energy
    • get_accounts() - Get all accounts
    • get_meters() - Get all meters
    • get_energy_usage(meter_serial, interval, view, start_date, end_date) - Get usage data
    • get_invoices(account_number) - Get the account's invoice list (most recent first)
    • get_billing_payment_info(include_closed=True) - Get billing/payment info per account (balance, dueDate, abbreviatedBillStatus, ...)
    • get_monthly_usage(meter_serial, period, start_date) - Get summarized usage/bill comparison (this period, last period, same period last year). For BILLINGCYCLE, pass start_date = latest invoice billEndDate + 1 day (derive once via get_invoices and reuse across meters on the account)

Contributors ✨

Thanks goes to these wonderful people (emoji key):

This project follows the all-contributors specification. Contributions of any kind welcome!

Credits

This package was created with Copier and the browniebroke/pypackage-template project template.

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

aiodukeenergy_co-1.2.0.tar.gz (17.8 kB view details)

Uploaded Source

Built Distribution

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

aiodukeenergy_co-1.2.0-py3-none-any.whl (17.6 kB view details)

Uploaded Python 3

File details

Details for the file aiodukeenergy_co-1.2.0.tar.gz.

File metadata

  • Download URL: aiodukeenergy_co-1.2.0.tar.gz
  • Upload date:
  • Size: 17.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aiodukeenergy_co-1.2.0.tar.gz
Algorithm Hash digest
SHA256 2b1369b88c742d5c53d355d711ae195d4713312c7ed8ad0b81b26200a236c81f
MD5 da6b363e6131ff63b96526116c312cc8
BLAKE2b-256 d6e1832a56b3bad91b31d1d7aed843c76e14b0b007558cba28c205a6395e856c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiodukeenergy_co-1.2.0.tar.gz:

Publisher: ci.yml on crash0verride11/aiodukeenergy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiodukeenergy_co-1.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for aiodukeenergy_co-1.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 1a5c5122cbad0ed86290aac93f4d69d5a9e3dd614addcca4f383e69faefa3499
MD5 4f952ff613359a009b6dd43da15e3584
BLAKE2b-256 49fc6f8ce5944a0286eaf7321dffd2c5e0bdafb7ac34d51224d1ecd2543e85a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiodukeenergy_co-1.2.0-py3-none-any.whl:

Publisher: ci.yml on crash0verride11/aiodukeenergy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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