Metadata-Version: 2.4
Name: fusuk
Version: 0.1.0
Summary: Generate fake US and UK names using real data
Author-email: Knopplie Lastname <knopplielastname@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/knopplie/fusuk
Project-URL: Repository, https://github.com/knopplie/fusuk
Project-URL: Issues, https://github.com/knopplie/fusuk/issues
Project-URL: Bug Tracker, https://github.com/knopplie/fusuk/issues
Keywords: fake,names,generator,us,uk,testing
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.28.0
Dynamic: license-file

# fusuk

A simple proof-of-concept package to generate UK/US Based realistic names.

## Usage

```python
from fusuk import getname

# Basic: random US name
print(getname())  # "James Wilson"

# With options
print(getname(country="uk", gender="female"))  # "Emily Clark"
```

**Function:** `getname(country="us", gender=None)`

playground is included for tests
