Metadata-Version: 1.1
Name: PyInvoice
Version: 0.1.0
Summary: Invoice/Receipt generator
Home-page: https://github.com/CiCiApp/PyInvoice
Author: zhangshine
Author-email: zhangshine0125@gmail.com
License: MIT License
Description: =========
        PyInvoice
        =========
        
        .. image:: https://api.travis-ci.org/CiCiApp/PyInvoice.svg?branch=master
            :target: https://github.com/CiCiApp/PyInvoice
        
        Invoice/Receipt Generator.
        
        Screenshot
        ----------
        
        .. image:: https://ciciapp.github.io/PyInvoice/dist/invoice.png
            :target: https://github.com/CiCiApp/PyInvoice
        
        Dependency
        ----------
        * Reportlab
        * Python 2.6+/3.3+
        
        +-------------------+-------------------+-------------------+-------------------+-------------------+
        |                   | Python 2.6        | Python 2.7        | Python 3.3        | Python 3.4        |
        +-------------------+-------------------+-------------------+-------------------+-------------------+
        | Reportlab 2.6     | ✓                 | ✓                 |                   |                   |
        +-------------------+-------------------+-------------------+-------------------+-------------------+
        | Reportlab 2.7     | ✓                 | ✓                 |                   |                   |
        +-------------------+-------------------+-------------------+-------------------+-------------------+
        | Reportlab 3.0     |                   | ✓                 | ✓                 | ✓                 |
        +-------------------+-------------------+-------------------+-------------------+-------------------+
        | Reportlab 3.1.44  |                   | ✓                 | ✓                 | ✓                 |
        +-------------------+-------------------+-------------------+-------------------+-------------------+
        | Reportlab 3.2     |                   | ✓                 | ✓                 | ✓                 |
        +-------------------+-------------------+-------------------+-------------------+-------------------+
        
        Install
        -------
        
        .. code-block:: bash
        
            pip install pyinvoice
        
        Usage
        -----
        
        .. code-block:: python
        
            from datetime import datetime, date
            from pyinvoice.models import InvoiceInfo, ServiceProviderInfo, ClientInfo, Item, Transaction
            from pyinvoice.templates import SimpleInvoice
            
            doc = SimpleInvoice('invoice.pdf')
            
            # Paid stamp, optional
            doc.is_paid = True
            
            doc.invoice_info = InvoiceInfo(1023, datetime.now(), datetime.now())  # Invoice info, optional
            
            # Service Provider Info, optional
            doc.service_provider_info = ServiceProviderInfo(
                name='PyInvoice',
                street='My Street',
                city='My City',
                state='My State',
                country='My Country',
                post_code='222222',
                vat_tax_number='Vat/Tax number'
            )
            
            # Client info, optional
            doc.client_info = ClientInfo(email='client@example.com')
            
            # Add Item
            doc.add_item(Item('Item', 'Item desc', 1, '1.1'))
            doc.add_item(Item('Item', 'Item desc', 2, '2.2'))
            doc.add_item(Item('Item', 'Item desc', 3, '3.3'))
            
            # Tax rate, optional
            doc.set_item_tax_rate(20)  # 20%
            
            # Transactions detail, optional
            doc.add_transaction(Transaction('Paypal', 111, datetime.now(), 1))
            doc.add_transaction(Transaction('Strip', 222, date.today(), 2))
            
            # Optional
            doc.set_bottom_tip("Email: example@example.com<br />Don't hesitate to contact us for any questions.")
            
            doc.finish()
        
        
        License
        -------
        MIT
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Software Development :: Libraries :: Python Modules
