Unifi-Python-API icon indicating copy to clipboard operation
Unifi-Python-API copied to clipboard

Conversion of the Unifi Shell API to python3 using Requests and Re

Results 4 Unifi-Python-API issues
Sort by recently updated
recently updated
newest added

``` r = self._session.get("{}/api/s/{}/stat/sta".format(self._baseurl, self._site, verify=self._verify_ssl), data="json={}") ``` should be ``` r = self._session.get("{}/api/s/{}/stat/sta".format(self._baseurl, self._site), verify=self._verify_ssl, data="json={}") ``` For description: with the `format` function you can define what should be...

In readme file the following link returns a 404. - Unifi Shell API - https://dl.ubnt.com/unifi/5.7.23/unifi_sh_api

Hi! I found the library looked a little like what i was after, so i decided to contribute a bit. My first pull request _ever_ - apologies if i have...

Can you release this to Pypi? Thanks