Documentation
This commit is contained in:
parent
5b1502cdea
commit
7d435e04d8
|
@ -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,
|
||||||
*,
|
*,
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user