Metadata-Version: 2.5
Name: acis-core
Version: 1.0.0
Summary: Reference data and utilities shared by ACIS clients.
Author-email: Steven Loria <git@stevenloria.com>
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-Expression: AGPL-3.0-or-later
License-File: LICENSE
Project-URL: Homepage, https://github.com/sloria/eoir-api
Project-URL: Issues, https://github.com/sloria/eoir-api/issues
Project-URL: Source, https://github.com/sloria/eoir-api
Import-Name: acis_core

# acis-core

Reference data and utilities (A-Number normalization, `Outcome` classification of ACIS responses) shared by ACIS clients.

```python
from acis_core.nationalities import get_by_code, resolve

get_by_code("mx")  # Nationality(code='MX', name='MEXICO')
resolve("Mexico")  # same; accepts a code or a name
```

