Metadata-Version: 2.4
Name: invoiceocean-client
Version: 0.1.1
Summary: Python client for the InvoiceOcean REST API (alias for fakturownia-client)
Author-email: Krzysztof Marmol <krzysztof.marmol@gmail.com>
License-Expression: MIT
Project-URL: Repository, https://github.com/KrzysztofMarmol/fakturownia-client
Keywords: invoiceocean,fakturownia,invoices,api,client
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Office/Business :: Financial :: Accounting
Classifier: Typing :: Typed
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: fakturownia-client==0.1.1

# invoiceocean-client

Python client for the [InvoiceOcean](https://invoiceocean.com) REST API.

This is an **official alias** for
[`fakturownia-client`](https://pypi.org/project/fakturownia-client/) —
InvoiceOcean is the international brand of Fakturownia and both run the same
API. The alias pins the exact matching release and re-exports the full API
with brand-matching class names:

```python
from invoiceocean_client import InvoiceOceanClient

with InvoiceOceanClient("mycompany.invoiceocean.com", api_token="...") as io:
    invoices = io.list_invoices(period="this_month")
```

`AsyncInvoiceOceanClient` mirrors the sync API on `httpx.AsyncClient`.
The API token is sent only in the `Authorization: Bearer` header — never in
URLs. Full documentation lives in the
[fakturownia-client repository](https://github.com/KrzysztofMarmol/fakturownia-client).

## License

MIT
