Skip to main content

API client for Wilma school portal

Project description

Wilhelmina - Wilma API Client

A Python API client for the Wilma school platform. This client allows you to authenticate, fetch messages, and view message contents from the Wilma platform.

Why is this not called Wilma? The reason is simple, PyPi sees "Wilma" as a prohibited packages name. It is not taken on PyPi, it just is not allowed. Wilhelmina is the long/full version of the name Wilma which is the reason for the name.

Wilma API Features

  • Messages
    • List (API)
    • Get single (API)
    • Get unread (Scraping w/ Playwright)*

* There is an API that returns the status of a message (0=read, 1=unread) but this is not enabled on all instances, specifically not on the Turku instance that I was interested in.

Home Assistant compatibility

This library has support for passing in an existing aiohttp to allow for easier integration with Home Assistant. The version of aiohttp has also been slightly restricted in order to be installable in Home Assistant. mashumaro was chosen for type safe models instead of Pydantic to not need to go through the v1 vs. v2 hassle.

Features

  • Asynchronous API using aiohttp
  • Type-safe models using mashumaro
  • Optional unread message detection using Playwright for JavaScript rendering
  • Graceful fallback when Playwright is not installed (messages won't be marked as unread)
  • Comprehensive test suite

Note about AI

Sonnet 3.7 has written a lot code in this repository. Far from one-shotted however and a lot of refactoring has been done in order to get things into this state. The main purpose for creating this library was to get quick access to the Wilma API through Python.

Installation

# Basic installation
pip install wilhelmina

# (Optional) Installation with Playwright support (for unread message detection)
pip install wilhelmina[playwright]

# Playwright browser will be installed automatically on import

# Using Poetry
poetry add wilhelmina -E playwright

API Client Usage

import asyncio
from wilhelmina import WilmaClient

async def main():
    # Initialize client with an optional existing aiohttp session
    # Use headless=False to see the browser
    session = aiohttp.ClientSession()  # Optional - provide your own session
    
    async with WilmaClient("https://turku.inschool.fi", session=session, headless=True) as client:
        # Login
        await client.login("username", "password")
        
        # Get messages
        messages = await client.get_messages()
        
        # Print messages
        for msg in messages:
            # Show unread status
            unread_status = "UNREAD" if msg.unread else "read"
            print(f"{msg.id}: {msg.subject} - {msg.timestamp} - {msg.sender} - {unread_status}")
            
            # Get message content
            content = await client.get_message_content(msg.id)
            print(f"Content: {content.content[:100]}...")

# Run the main function
asyncio.run(main())

Development

Setup

# Clone the repository
git clone https://github.com/frwickst/wilhelmina.git
cd wilhelmina

# Install development dependencies
poetry install

# Install Playwright browser
poetry run playwright install chromium

Running Tests

# Run all tests
poetry run pytest

# Run specific tests
poetry run pytest wilhelmina/tests/test_client.py

# Run with coverage
poetry run pytest --cov=wilhelmina

Linting and Type Checking

# Format with ruff
poetry run ruff format wilhelmina

# Run ruff for linting
poetry run ruff check wilhelmina --fix

# Run mypy for type checking
poetry run mypy wilhelmina

License

MIT

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

wilhelmina-0.1.5.tar.gz (18.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

wilhelmina-0.1.5-py3-none-any.whl (21.9 kB view details)

Uploaded Python 3

File details

Details for the file wilhelmina-0.1.5.tar.gz.

File metadata

  • Download URL: wilhelmina-0.1.5.tar.gz
  • Upload date:
  • Size: 18.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.12.10 Darwin/24.2.0

File hashes

Hashes for wilhelmina-0.1.5.tar.gz
Algorithm Hash digest
SHA256 10a976037a2b609cb4bb695690c2adafcfbe8a15d3f1550fffce1a7cbb20b50e
MD5 76b5a083fd4f3baef932881199ad162e
BLAKE2b-256 22bf7a2018dea98e92898c88901eba7e1dc11f8a810771b6c98e956bc1078cc1

See more details on using hashes here.

File details

Details for the file wilhelmina-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: wilhelmina-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 21.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.12.10 Darwin/24.2.0

File hashes

Hashes for wilhelmina-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 d185698c49c320dc65ddaa0936f5984f73b41d6eb213062950045bb83ecacfe6
MD5 db26e5d220b724bb37fd23fc8df62ca6
BLAKE2b-256 30a6dd47dfa4d33b6966b7e7bd3d1e3becd6e543f67df8de691aaad89c6783fa

See more details on using hashes here.

Supported by

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