An open API service indexing awesome lists of open source software.

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)

Awesome Lists containing this project

README

          

# rwafaker

[![Downloads](https://pepy.tech/badge/rwafaker)](https://pepy.tech/project/rwafaker)
[![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=102)](https://github.com/ellerbrock/open-source-badge/)
[![Open Source Love](https://badges.frapsoft.com/os/mit/mit.svg?v=102)](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']

```