Skip to main content

A Python Async LernSax Client

Project description

This project is in no way associated with LernSax, WebWeaver, DigiOnline GmbH or Freistaat Sachsen

What is this?

This is an API Wrapper for the LernSax API using aiohttp. Please note that we do not encourage taking any harmful actions against anyone using this wrapper.

Documentation?

Basic Documentation, generated with pdoc, for this module is available here For Documentation of the actual LernSax jsonrpc API you should probably still stick to this repo

Example Usage

import lernsax
import asyncio

async def main():
    client = await lernsax.Client(
    email="",
    password=""
    )
    await client.login(client.email, client.password)
    print(await client.get_emails("494e424f58"))

asyncio.get_event_loop().run_until_complete(main())

Accessing Files via WebDav

Use aiodav for async webdav access to LernSax, please refer to this repo for more info on aiodav

import aiodav
import asyncio

async def main():
    async with Client('https://lernsax.de/webdav.php', login='', password='') as client:
        await client.download_file('/remote/file.zip', 
                                    '/local/file.zip',
                                    progress=progress)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

lernsax-1.5.2.tar.gz (7.4 kB view hashes)

Uploaded Source

Built Distribution

lernsax-1.5.2-py3-none-any.whl (7.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page