Skip to main content

IFirma API client

Project description

Python wrapper for ifirma's API

Requires Python 3.8 or later. This little project aims to refresh my python coding skills.

Besides coding fun this code also supported invoicing in a few small online shops. It does its job pretty well.

First version was inspired of @DariuszAniszewski's python-ifirma but covers slightly different operations.

Features

It supports following operations

  • create invoice (VAT & non-VAT payers)
  • listing invoices created in past
  • send email with pdf-invoice attached (it sends also copy to the account owner)
  • parses invoice described with yaml file
  • download invoice in pdf format

Getting started

pip install pnowosie.ifirma-api

or from this repository

pip install -e git+git@github.com:pnowosie/ifirma-api.git#egg=pnowosie.ifirma-api

Invoice creation

Please review examples in ./sample_invoice directory. You will find there how to create invoice from yaml file. Send it via email and download pdf version to a location of choice.

Or create invoice from code

from ifirma.invoice import (Invoice, Customer, InvoicePosition, INVOICE_TYPE)
from ifirma.request import send_invoice

invoice = Invoice(
    invoice_type=INVOICE_TYPE.NON_VAT_PAYER,
    issue_date=datetime(...)
).with_issuer(
    'Imię Nazwisko'
).with_payed(
    float(price)
).with_comments(
    f"Nr zamówienia: {numer}"
).with_position(
    InvoicePosition(product_name, float(price))
).with_new_customer(
    Customer(full_name, email, zip, city, street1, street2)
)

if you registered your customer in ifirma you can use

invoice.with_known_customer(
  name, tax_id
)

Having invoice object, we can send it to create an invoice in the ifirma. Please mind that two environment variables IFIRMA_API_USERNAME and IFIRMA_API_KEY have to be set to authenticate API request.

create_invoice_response = send_invoice(invoice)

if create_invoice_response.success:
  print(f"Invoice created with id {create_invoice_response.invoice_id}")
else:
  print("Something bad has happened: " + create_invoice_response.message)

Next step can be send an email with the invoice attached to the customer email address. CC is delivered also to our address registered in the ifirma.

from ifirma.request import send_email

custom_message = "Can you please send me more money? I'm getting ambitious vacation plans!"
email_send_response = send_email(invoice_id, customer_email_address, custom_message)

Please check this example.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pnowosie.ifirma-api-1.1.0.tar.gz (8.2 kB view hashes)

Uploaded Source

Built Distribution

pnowosie.ifirma_api-1.1.0-py3-none-any.whl (8.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page