Metadata-Version: 2.4
Name: abvdget
Version: 2.0
Summary: Download data from the Austronesian Basic Vocabulary Database
Author-email: "Simon J. Greenhill" <simon@simon.net.nz>
License-Expression: MIT AND (Apache-2.0 OR BSD-2-Clause)
License-File: LICENSE
Requires-Python: >=3.13
Requires-Dist: httpx>=0.28.1
Description-Content-Type: text/markdown

# ABVDGet

## Download data:

```
from abvd import Downloader
content = Downloader('austronesian').get(1)

d = Downloader('austronesian')
d.get(99)
d.write("99.json")
```

## Process data into useable format:

```
db = ABVDatabase(files=['1.json', '2.json'])
db.process()
for r in db.records:
    print(r)
```
