===================
dawa-sdk is a simple client for dawa api. It uses [Dawa Web API](https://dawadocs.dataforsyningen.dk/dok/api. It is mainly designed for data replication, but will at later stages include search.
pip install dawa-sdk
from dawa import API
api = API()
def replicate():
# Due to the amount of data on some endpoint, this returns a generator
def txid():
# Returns an integer
# Get current txid and store somewhere
txid = api.txid()
# Get initial replication
vejstykke = api.replicate('vejstykke')
# Get latest txid and check if it is greater than previous
txid = api.txid()
# if yes get all the changes between last and current txid
vejstykke = api.replicate('vejstykke', txidfra='3340338', txidtil='3340338')
# It is also possible to get data from a single txid
vejstykke = api.replicate('vejstykke', txid='3340338')
Not implemented yet