معرفی شرکت ها


aseafile-0.1.6a0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Unofficial library that provides the API methods of the seafile service
ویژگی مقدار
سیستم عامل -
نام فایل aseafile-0.1.6a0
نام aseafile
نسخه کتابخانه 0.1.6a0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Gwinkamp
ایمیل نویسنده Aleksey-Y-Kiryutin@yandex.ru
آدرس صفحه اصلی https://github.com/Gwinkamp/aseafile
آدرس اینترنتی https://pypi.org/project/aseafile/
مجوز MIT
# aseafile Asynchronous [seafile](https://www.seafile.com/en/home/) Unofficial library that provides the API methods of the seafile service ## Installation ```commandline pip install aseafile --upgrade ``` ## Features This library is asynchronous At the moment, the library has support several sections of the [seafile web api](https://download.seafile.com/published/web-api/home.md): * [directories management](https://download.seafile.com/published/web-api/v2.1/directories.md) * [files managment](https://download.seafile.com/published/web-api/v2.1/file.md) * [upload file](https://download.seafile.com/published/web-api/v2.1/file-upload.md) * [libraries (repositories) managment](https://download.seafile.com/published/web-api/v2.1/libraries.md) > Currently, only version 2.1 of the seafile web api is supported ## Dependencies > python version **3.10** minimum required Requirements python libraries: * [aiohttp](https://docs.aiohttp.org/en/stable/) * [pydantic](https://github.com/pydantic/pydantic) ## Getting started Creating an instance of http client and verifying that the service is running using the "ping" method: ```python import asyncio from aseafile import SeafileHttpClient async def main(): client = SeafileHttpClient(base_url='http://seafile.example.com') result = await client.ping() print(result.content) # pong if __name__ == '__main__': asyncio.run(main()) ``` Obtaining access token and sending "auth ping": ```python import asyncio from aseafile import SeafileHttpClient async def main(): client = SeafileHttpClient(base_url='http://seafile.example.com') token_result = await client.obtain_auth_token(username='my@example.com', password='Test123456') result = await client.auth_ping(token=token_result.content) print(result.content) # pong if __name__ == '__main__': asyncio.run(main()) ``` Authorization in the service with automatic token saving and sending "auth ping": ```python import asyncio from aseafile import SeafileHttpClient async def main(): client = SeafileHttpClient(base_url='http://seafile.example.com') await client.authorize(username='my@example.com', password='Test123456') result = await client.auth_ping() print(result.content) # pong if __name__ == '__main__': asyncio.run(main()) ``` ## Contributing free


نیازمندی

مقدار نام
- aiohttp
- pydantic


زبان مورد نیاز

مقدار نام
>=3.10 Python


نحوه نصب


نصب پکیج whl aseafile-0.1.6a0:

    pip install aseafile-0.1.6a0.whl


نصب پکیج tar.gz aseafile-0.1.6a0:

    pip install aseafile-0.1.6a0.tar.gz