Metadata-Version: 2.4
Name: phoney
Version: 0.2.2
Summary: Fake Info generator, a library for generating realistic personal data like names, phone numbers, emails, and more.
Home-page: https://github.com/YTstyo/phoney
Author: rarfile
Author-email: YTstyo <d7276250@email.com>
License: MIT
Project-URL: Homepage, https://github.com/YTstyo/phoney
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: home-page
Dynamic: requires-python

# Phoney

Phoney is a Python library for generating realistic fake personal data, similar to Faker. It can create names, phone numbers, emails, ages, birthdates, and full profiles for many locales.

## Features
- Generate first names, last names, and full names
- Locale-aware phone numbers and emails
- Realistic age and birthdate generation
- Complete fake profiles (name, gender, age, birthdate, email, phone, locale)
- Easy-to-use API: `phoney = Phoney()`

## Installation
```bash
pip install phoney
```

## Usage
```python
from phoney import Phoney
phoney = Phoney()

print(phoney.first_name(gender="male", locale="en_GB"))
print(phoney.last_name(locale="fr_FR"))
print(phoney.phone(locale="en_US"))
print(phoney.email(first_name="jim", last_name="cooley", locale="en_US"))
print(phoney.profile(locale="de_DE"))
```

## License
MIT

## Author
rarfile
