Metadata-Version: 2.4
Name: wittiot
Version: 1.0.31
Summary: WSView Plus support
Home-page: https://github.com/PPw096/wittiot
Author: PPw096
Author-email: 1225835565@qq.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: aiohttp
Requires-Dist: requests
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# 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 API
from aiohttp import ClientSession
async def main() -> None:
    async with ClientSession() as session:
        try:
            api = API("10.255.172.105", session=session)
            res =await api._request_loc_allinfo()
            _LOGGER.info("_request_loc_allinfo==============: %s", res)
```
