8000 GitHub - hieunba/nextcloud-async: Async-capable python wrapper for Nextcloud APIs
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

hieunba/nextcloud-async

 
 

Folders and files

NameName
Last commit message
C569 Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nextcloud Asynchronous Client

This project is not endorsed or recognized in any way by the NextCloud project.


Example usage:

> from nextcloud_async import NextCloudAsync
> import httpx, asyncio

> u = 'user'
> p = 'password'
> e = 'https://cloud.example.com'
> c = httpx.AsyncClient()
> nca = NextCloudAsync(client=c, user=u, password=p, endpoint=e)
> users = asyncio.run(nca.get_users())
> print(users)
['admin', 'slippinjimmy', 'chunks', 'flipper', 'squishface']

About

Async-capable python wrapper for Nextcloud APIs

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.7%
  • Other 0.3%
0