Welcome to FakeInvoiceGen’s documentation!

FakeInvoiceGen is a Python package that combines the power of Faker and InvoiceGenerator libraries to create realistic fake invoices for testing and development purposes.

Installation

You can install the package using pip:

pip install fakeinvoicegen

Quick Start

Here’s a simple example to get you started:

from fakeinvoicegen import InvoiceGenerator

# Initialize the generator
generator = InvoiceGenerator()

# Generate 5 random invoices
generator.generate_invoices(count=5)

For more detailed information, check out the Usage section.