Metadata-Version: 2.4
Name: fakturoid-v3
Version: 0.1.0
Summary: The Python interface to online accounting service [Fakturoid](http://fakturoid.cz/).
Project-URL: Homepage, https://github.com/jarovo/python-fakturoid-v3/
Project-URL: Repository, https://github.com/jarovo/python-fakturoid-v3/
Author-email: Roman Krejcik <farin@farin.cz>, Jaroslav Henner <jaroslav.henner@gmail.com>
Maintainer-email: Jaroslav Henner <jaroslav.henner@gmail.com>
License-Expression: MIT
Keywords: accounting,fakturoid
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Office/Business :: Financial :: Accounting
Requires-Python: >=3.8
Requires-Dist: pydantic>=2.0
Requires-Dist: pydantic[email]
Requires-Dist: python-dateutil
Requires-Dist: requests
Provides-Extra: test
Requires-Dist: freezegun>=1.5.1; extra == 'test'
Description-Content-Type: text/markdown

# fakturoid.cz Python API

The Python interface to online accounting service [Fakturoid](http://fakturoid.cz/) using Faktiuroid's v3 api.

This library is developed and maintained by Jaroslav Henner ([jaroslav.henner@gmail.com](mailto:jaroslav.henner@gmail.com)).
It is unoficial and no support from Fakturoid team can be claimed.

## Installation

Install from PyPI

    pip install fakturoid-v3

or alternatively install development version directly from github

    pip install -e git+git://github.com/jarovo/python-fakturoid-v3#egg=fakturoid-v3


Supported Python versions are 2.6+ and 3.x. Dependencies are [requests](https://pypi.python.org/pypi/requests),
[python-dateutil](https://pypi.python.org/pypi/python-dateutil/2.1)

## Quickstart

Generate the Client ID and Client Secret from your Fakturoid user screen: Settings → User account.

Create context:
```python
from fakturoid import Fakturoid

fa = Fakturoid('yourslug', 'CLIENT_ID', 'CLIENT_SECRET', 'YourApp')
fa.oauth_token_client_credentials_flow()
```

Print 25 regular invoices in year 2013:
```python
from datetime import date

for invoice in fa.invoices(proforma=False, since=date(2013,1,1))[:25]:
    print(invoice.number, invoice.total)
```

Delete subject with id 27:
```python
subject = fa.subject(27)
fa.delete(subject)
```

And finally create new invoice:
```python
from fakturoid import Invoice, InvoiceLine

invoice = Invoice(
    subject_id=28,
    number='2013-0108',
    due=10,
    issued_on=date(2012, 3, 30),
    taxable_fulfillment_due=date(2012, 3, 30),
    lines=[
        # use Decimal or string for floating values
        InvoiceLine(name='Hard work', unit_name='h', unit_price=40000, vat_rate=20),
        InvoiceLine(name='Soft material', quantity=12, unit_name='ks', unit_price="4.60", vat_rate=20),
    ]
)
fa.save(invoice)

print(invoice.due_on)
```

## API

<code>Fakturoid.<b>account()</b></code>

Returns `Account` instance. Account is readonly and can't be updated by API.

<code>Fakturoid.<b>subject(id)</b></code>

Returns `Subject` instance.

<code>Fakturoid.<b>subjects(since=None, updated_since=None, custom_id=None)</b></code>

Loads all subjects filtered by args.
If since (`date` or `datetime`) parameter is passed, returns only subjects created since given date.

<code>Fakturoid.<b>subjects.search("General Motors")</b></code>

Perform full text search on subjects

<code>Fakturoid.<b>invoce(id)</b></code>

Returns `Invoice` instance.

<code>Fakturoid.<b>invoices(proforma=None, subject_id=None, since=None, updated_since=None, number=None, status=None, custom_id=None)</b></code>

Use `proforma=False`/`True` parameter to load regular or proforma invoices only.

Returns list of invoices. Invoices are lazily loaded according to slicing.
```python
fa.invoices(status='paid')[:100]   # loads 100 paid invoices
fa.invoices()[-1]   # loads first issued invoice (invoices are ordered from latest to first)
```

<code>Fakturoid.<b>fire_invoice_event(id, event, **args)</b></code>

Fires basic events on invoice. All events are described in [Fakturoid API docs](https://fakturoid.docs.apiary.io/#reference/invoices/invoice-actions/akce-nad-fakturou).

Pay event can accept optional arguments `paid_at` and `paid_amount`
```python
fa.fire_invoice_event(11331402, 'pay', paid_at=date(2018, 11, 17), paid_amount=2000)
```

<code>Fakturoid.<b>generator(id)</b></code>

Returns `Generator` instance.

<code>Fakturoid.<b>generators(recurring=None, subject_id=None, since=None)</b></code>

Use `recurring=False`/`True` parameter to load recurring or simple templates only.

<code>Fakturoid.<b>save(model)</b></code>

Create or modify `Subject`, `Invoice` or `Generator`.

To modify or delete invoice lines simply edit `lines`

```python
invoice = fa.invoices(number='2014-0002')[0]
invoice.lines[0].unit_price = 5000 # edit first item
del invoice.lines[-1]  # delete last item
fa.save(invoice)
```

<code>Fakturoid.<b>delete(model)</b></code><br>

Delete `Subject`, `Invoice` or `Generator`.

```python
subj = fa.subject(1234)
fa.delete(subj)            # delete subject

fa.delete(Subject(id=1234))   # or alternativelly delete is possible without object loading
```

### Models

All models fields are named same as  [Fakturoid API](https://fakturoid.docs.apiary.io/).

Values are mapped to corresponding `int`, `decimal.Decimal`, `datetime.date` and `datetime.datetime` types.

<code>Fakturoid.<b>Account</b></code>

[https://fakturoid.docs.apiary.io/#reference/account](https://fakturoid.docs.apiary.io/#reference/account)

<code>Fakturoid.<b>Subject</b></code>

[https://fakturoid.docs.apiary.io/#reference/subjects](https://fakturoid.docs.apiary.io/#reference/subjects)

<code>Fakturoid.<b>Invoice</b></code><br>
<code>Fakturoid.<b>InvoiceLine</b></code>

[https://fakturoid.docs.apiary.io/#reference/invoices](https://fakturoid.docs.apiary.io/#reference/invoices)

<code>Fakturoid.<b>Generator</b></code>

[https://fakturoid.docs.apiary.io/#reference/generators](https://fakturoid.docs.apiary.io/#reference/generators)

Use `InvoiceLine` for generator lines

<code>Fakturoid.<b>Message</b></code>

[http://fakturoid.docs.apiary.io/#reference/messages](https://fakturoid.docs.apiary.io/#reference/messages)

<code>Fakturoid.<b>InventoryItems</b></code>

[http://fakturoid.docs.apiary.io/#reference/inventory-items](https://fakturoid.docs.apiary.io/#reference/inventory-items)