API Reference

Below is all of the API documentation.

Overview of Modules

The following different types of fake data can be created. More types are under development.

pydatafaker.business

Create a business with fake data.

pydatafaker.school

Create a school with fake data.

Business

The business module allows you to create a business by generating fake data.

pydatafaker.business.create_business([…])

Create an entire fake business.

pydatafaker.business.create_vendor_table([n])

Create a table of fake vendors.

pydatafaker.business.create_employee_table(…)

Create a table of fake employees.

pydatafaker.business.create_po_table(vendor_id)

Create a table of fake purchase orders (PO).

pydatafaker.business.create_invoice_table(…)

Create fake invoice and invoice line item tables.

School

The school module allows you to create a school by generating fake data.

pydatafaker.school.create_school([…])

Create an entire fake school.

pydatafaker.school.create_students([n, …])

Create a DataFrame with fake student names and attributes.

pydatafaker.school.create_teachers([n, …])

Create a DataFrame with fake teacher names and attributes.

pydatafaker.school.create_grades(student_ids)

Create fake grades.

pydatafaker.school.create_rooms([n])

Create a DataFrame with fake room IDs and attributes.