Metadata-Version: 2.1
Name: wittiot
Version: 1.0.24
Summary: WSView Plus support
Home-page: https://github.com/PPw096/wittiot
Author: PPw096
Author-email: 1225835565@qq.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# Wittiot get data
 
Data access for some Wittiot models.
 
- LAN data acquisition: request_loc_allinfo().Use the ip of the device to get data.
example:
```python
from wittiot import Wittiot
from aiohttp import ClientSession
async def main() -> None:
    async with ClientSession() as session:
        try:
            api = Wittiot("10.255.172.105", session=session)
            res =await api._request_loc_allinfo()
            _LOGGER.info("_request_loc_allinfo==============: %s", res)
```

