Metadata-Version: 2.1
Name: fakedpy
Version: 1.1
Summary: A simple fake data generator that exports results to CSV
Home-page: UNKNOWN
Author: aryawiratama2401@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: faker
Requires-Dist: pandas

# fakedpy

fakedpy is A simple fake data generator that exports results to CSV


## Installation

```bash
pip install fakedpy
```
Or

```bash
pip install git+https://github.com/AryaWiratama26/fakedpy.git
```

## Example

```python
from fakedpy import faked

print(faked(5, ["name", "address"]))
```

## Fake data
```python
- "name" = Name
- "address" = Address
- "job" = Job
- "email" = Email
- "phone_number" = Phone Number
- "company" = Company
- "text" = Text
- "date_of_birth" = Date of Birth

```

### Author
- Name : Arya Wiratama
- Email : <a href="mailto:aryawiratama2401@gmail.com">aryawiratama2401@gmail.com</a>
- Pypi : https://pypi.org/project/fakedpy/


