1
0

Documentation

This commit is contained in:
Jon Michael Aanes 2024-09-28 12:57:27 +02:00
parent 5b1502cdea
commit 7d435e04d8
Signed by: Jmaa
SSH Key Fingerprint: SHA256:Ab0GfHGCblESJx7JRE4fj4bFy/KRpeLhi41y4pF3sNA
2 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,7 @@
"""Favro API Client.
Implements methods for interacting with the [Favro API](https://favro.com/developer/).
"""
import dataclasses import dataclasses
from collections.abc import Iterator from collections.abc import Iterator
from logging import getLogger from logging import getLogger
@ -54,6 +58,11 @@ class CardCache:
class FavroClient: class FavroClient:
"""Favro API Client.
Implements methods for interacting with the [Favro API](https://favro.com/developer/).
"""
def __init__( def __init__(
self, self,
*, *,

View File

@ -1,3 +1,8 @@
"""Favro Data Model.
Based on the descriptions on the [Favro API Specification
Page](https://favro.com/developer/), and observed behaviour.
"""
import dataclasses import dataclasses
import datetime import datetime
from typing import Any from typing import Any