mirror of
https://github.com/jiro4989/faker
synced 2026-01-02 10:34:46 +00:00
No description
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|---|---|---|
| .chglog | ||
| .github | ||
| script | ||
| src | ||
| tests | ||
| tools | ||
| .gitignore | ||
| faker.nimble | ||
| LICENSE | ||
| README.rst | ||
=====
faker
=====
|gh-actions|
faker is a Nim package that generates fake data for you.
faker is heavily inspired by `Python Faker <https://github.com/joke2k/faker>`_.
**WIP**
.. contents:: Table of contents
:depth: 3
Installation
============
.. code-block:: Bash
nimble install faker
Usage
=====
Library
-------
.. code-block:: Nim
import faker
block:
let fake = newFaker("ja_JP")
echo fake.address()
# -> 茨城県港区東三島31丁目3番16号
echo fake.name()
# -> 若松 香織
block:
# default locale is `LANG` environment variables
let fake = newFaker()
echo fake.address()
# -> 94622 Cesar Camp Apt. 13 South Caitlyn, HI 35128
echo fake.name()
# -> Bruce Wagner DDS
CLI
----
.. code-block:: Bash
$ faker address
大阪府調布市湯宮27丁目24番12号
# Set locale and run
$ LANG=en_US.UTF-8 faker name
Mr. Leonard Johns
Supported locale
================
I understand only English and Japanese.
====== ===========
Locale Description
====== ===========
en_US English
ja_JP Japanese
fa_IR Persian
====== ===========
Providers
=========
TODO list.
- [ ] base
- [o] faker.provider.address
- [o] faker.provider.automotive
- [o] faker.provider.bank
- [ ] faker.provider.barcode
- [ ] faker.provider.color
- [o] faker.provider.company
- [ ] faker.provider.credit_card
- [o] faker.provider.currency
- [ ] faker.provider.date_time
- [o] faker.provider.file
- [ ] faker.provider.geo
- [ ] faker.provider.internet
- [o] faker.provider.isbn
- [o] faker.provider.job
- [ ] faker.provider.lorem
- [o] faker.provider.misc
- [o] faker.provider.person
- [o] faker.provider.phone_number
- [ ] faker.provider.profile
- [ ] faker.provider.python
- [o] faker.provider.ssn
- [o] faker.provider.user_agent
API document
============
* https://jiro4989.github.io/faker/faker.html
Development
===========
Adding new module
-----------------
You can generate a new module with `nimble genMod` task.
Run below.
.. code-block:: Bash
$ nimble genMod new_module
Please see other module implements, and edit a generated module.
Update provider code
--------------------
You can update `src/faker/provider/*.nim` codes with `generator` tool.
Run below if you had edited a new module.
.. code-block:: Bash
$ nimble tool
$ ./tools/generator
See `src/faker/provider/*.nim`.
A new provider will be generated.
.. code-block: Bash
$ ls -1 src/faker/provider/*.nim
src/faker/provider/address.nim
src/faker/provider/job.nim
src/faker/provider/person.nim
src/faker/provider/phone_number.nim
src/faker/provider/new_module.nim # <--- New provider.
src/faker/provider/util.nim
Pull request
============
Welcome :heart:
LICENSE
=======
MIT
.. |gh-actions| image:: https://github.com/jiro4989/faker/workflows/test/badge.svg
:target: https://github.com/jiro4989/faker/actions