Metadata-Version: 2.1
Name: city_of_saskatoon_smart_util
Version: 0.0.2
Summary: An unofficial Python module for interacting with the City of Saskatoon's SmartUtil service
Project-URL: Homepage, https://github.com/evansalter/city-of-saskatoon-smart-util
Project-URL: Bug Tracker, https://github.com/evansalter/city-of-saskatoon-smart-util/issues
Author-email: Evan Salter <hi@evansalter.com>
License: MIT License
        
        Copyright (c) 2022 Evan Salter
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Requires-Dist: city-of-saskatoon-auth>=0.0.3
Description-Content-Type: text/markdown

# city-of-saskatoon-smart-util

An unofficial Python module for interacting with the City of Saskatoon's SmartUtil service.

Features:

1. Fetch the meters from your SmartUTIL account
1. Fetch the previous 24 hours of data from your SmartUTIL account

## Usage

```python
from city_of_saskatoon_smart_util import SmartUtil
su = SmartUtil('username', 'password')
su.login()

meters = su.get_meters()

usage = su.get_past_24_hour_usage(meters[0])
# [{'timestamp': '2022-10-26 21:15', 'value': 0.27}, {'timestamp': '2022-10-26 21:30', 'value': 0.29}, {'timestamp': '2022-10-26 21:45', 'value': 0.29}, ...]
```