Quick start

Faker is a random data generator for julia programming language. Faker will be of use to you, whether you need to start your database, test the operation of its services or build documents automatically.

Faker groups functions with common properties in "Providers", such as Company, Datetime, Internet, Lorem, Phone number, etc. Each call to any method produces a different (random) result.

Faker is heavily inspired by Python Faker, and by Ruby Faker.

Install

First download and install Julia 1.5 or higher. To do the installation use any of the following commands:

$ (@v1.5) pkg> add Faker
using Pkg
Pkg.add("Faker")

Use

To execute the functions included in the Faker package it is necessary to refer to them with the prefix Faker.

using Faker

Faker.email() # => "kirsten.greenholt@corkeryfisher.info"

Last updated