Skip to content

Polidea/Polish-Invoice-Generator

This branch is 14 commits ahead of, 98 commits behind by-cx/InvoiceGenerator:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

author
Grzegorz Kapusta
Aug 29, 2019
0df6cae · Aug 29, 2019
Aug 29, 2019
Apr 7, 2012
Nov 16, 2012
Dec 3, 2014
Dec 4, 2014
Dec 4, 2014
Jan 23, 2015
Jan 23, 2015
Jan 23, 2015
Apr 21, 2014
Oct 5, 2015
Dec 3, 2014
Jan 23, 2015
Sep 8, 2013
Sep 29, 2017
Jan 23, 2015
Dec 3, 2014

Repository files navigation

InvoiceGenerator

This is library to generate a simple PDF invoice. It's based on ReportLab.

Installation

Run this command as root:

pip install InvoiceGenerator

If you want upgrade to new version, add --upgrade flag.:

pip install InvoiceGenerator --upgrade

You can use setup.py from GitHub repository too.:

python setup.py install

Example

Usage:

from tempfile import NamedTemporaryFile

from InvoiceGenerator.api import Invoice, Item, Client, Provider, Creator
from InvoiceGenerator.pdf import SimpleInvoice


client = Client('Client company')
provider = Provider('My company', bank_account='2600420569/2010')
creator = Creator('John Doe')

invoice = Invoice(client, provider, creator)
invoice.currency_locale = 'en_US.UTF-8'
invoice.add_item(Item(32, 600, description="Item 1"))
invoice.add_item(Item(60, 50, description="Item 2", tax=10))
invoice.add_item(Item(50, 60, description="Item 3", tax=5))
invoice.add_item(Item(5, 600, description="Item 4", tax=50))

tmp_file = NamedTemporaryFile(delete=False)
pdf = SimpleInvoice(invoice)
pdf.gen(tmp_file.name, generate_qr_code=True)

Hacking

Fork the [repository on github](https://github.com/creckx/InvoiceGenerator) and write code. Make sure to add tests covering your code under /tests/. You can run tests using:

python setup.py test

Then propose your patch via a pull request.

About

Library to generate PDF invoices.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 98.4%
  • Other 1.6%