Metadata-Version: 2.1
Name: evduty-free
Version: 0.0.1a0
Summary: Unofficial module for interacting with EVDuty EV charger api
Home-page: https://github.com/planetefrench/evduty-free
Author: Jean-Marc G
Author-email: none@none.none
License: Apache 2
Download-URL: https://github.com/planetefrench/evduty-free/archive/refs/tags/v0.0.1-alpha.tar.gz
Description: 
        
        
        
        # evdutyfree
         Unofficial Python Module interface for EVduty chargers api
        
         ⚠️Warning - Very ALPHA and not ready for production. ⚠️
        
        
        Loosely based on https://github.com/cliviu74/wallbox.
        
        ## Example
        
        ```
        from evdutyfree import EVdutyFree
        
        w = EVdutyFree("user@domain.com", "password")
        
        # Authenticate with the credentials above
        w.authenticate()
        stations = w.get_station_ids()
        terminals = w.get_terminal_ids(stations[0])
        
        terminalinfo = w.get_terminal_info(stations[0],terminals[0])
        
        print(w.get_max_charging_current(stations[0],terminals[0]))
        w.set_max_charging_current(stations[0], terminals[0], 30)
        print(w.get_max_charging_current(stations[0],terminals[0]))
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown
