https://github.com/knowbee/py-rwafaker
This package generates massive amounts of realistic fake data in Rwanda native language (Ikinyarwanda)
https://github.com/knowbee/py-rwafaker
fake fakedata faker generator rwanda
Last synced: 5 months ago
JSON representation
This package generates massive amounts of realistic fake data in Rwanda native language (Ikinyarwanda)
- Host: GitHub
- URL: https://github.com/knowbee/py-rwafaker
- Owner: knowbee
- License: mit
- Created: 2019-12-07T17:38:22.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-12-25T16:08:49.000Z (over 5 years ago)
- Last Synced: 2025-09-24T04:44:22.319Z (9 months ago)
- Topics: fake, fakedata, faker, generator, rwanda
- Language: Python
- Homepage: https://pypi.org/project/rwafaker/
- Size: 20.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rwafaker
[](https://pepy.tech/project/rwafaker)
[](https://github.com/ellerbrock/open-source-badge/)
[](https://github.com/ellerbrock/open-source-badge/)
This is a simple python package that generates massive amounts of realistic fake data in Rwanda native language (Ikinyarwanda)
## Installation
The distribution is hosted on pypi at: https://pypi.org/project/rwafaker/. To directly install the package from pypi, run from your terminal::
$ pip install rwafaker
## Usage
---
### Single Outputs
```py
from rwafake import rwafaker
fname = rwafaker.firstName() # 'Bisamaza'
lname = rwafaker.lastName() # 'Smith'
fullName = rwafaker.fullName() # 'Bisamaza Smith'
email = rwafaker.email() # 'bisamaza_sm@gmail.com'
```
### Multiple Outputs
```py
from rwafake import rwafaker
fname = rwafaker.firstName(2) # ['Ngarambe', 'Rwigema']
lname = rwafaker.lastName(2) # ['Barker', 'Fuller']
fullName = rwafaker.fullName(2) # ['Kandekwe Galloway', 'Buhigiro Byers']
email = rwafaker.email(2) # ['banganirora.suarez@ur.ac.rw', 'umugaba.cox@yahoo.com']
```