Metadata-Version: 2.1
Name: wallbox
Version: 0.3
Summary: Module for interacting with Wallbox EV charger api
Home-page: https://github.com/cliviu74/wallbox
Author: Liviu Chiribuca
Author-email: cliviu74@yahoo.com
License: MIT
Description: # wallbox
        Python Module interface for Wallbox EV chargers api
        
        ## Usage
        #### Installation
        `pip install wallbox`
        
        #### Simple example
        ```python
        from wallbox import Wallbox
        
        from wallbox import Wallbox
        w = Wallbox("email@domain.tld","password")
        
        # Authenticate with the credentials above
        w.authenticate()
        
        # Print a list of chargers in the account
        print(w.getChargersList())
        
        # Get charger data for all chargers in the list 
        for chargerId in w.getChargersList():
            print(w.getChargerData(chargerId))
        ```
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown
