From 7d435e04d8819787e4095d02d806cc666c6b4ab9 Mon Sep 17 00:00:00 2001 From: Jon Michael Aanes Date: Sat, 28 Sep 2024 12:57:27 +0200 Subject: [PATCH] Documentation --- favro_sync/favro_client.py | 9 +++++++++ favro_sync/favro_data_model.py | 5 +++++ 2 files changed, 14 insertions(+) diff --git a/favro_sync/favro_client.py b/favro_sync/favro_client.py index feaeed2..a257739 100644 --- a/favro_sync/favro_client.py +++ b/favro_sync/favro_client.py @@ -1,3 +1,7 @@ +"""Favro API Client. + +Implements methods for interacting with the [Favro API](https://favro.com/developer/). +""" import dataclasses from collections.abc import Iterator from logging import getLogger @@ -54,6 +58,11 @@ class CardCache: class FavroClient: + """Favro API Client. + + Implements methods for interacting with the [Favro API](https://favro.com/developer/). + """ + def __init__( self, *, diff --git a/favro_sync/favro_data_model.py b/favro_sync/favro_data_model.py index 84e93fb..ab7aa2d 100644 --- a/favro_sync/favro_data_model.py +++ b/favro_sync/favro_data_model.py @@ -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 datetime from typing import Any