Faker
  • Quick start
  • Guide
    • Providers
      • SSN
      • Base
      • Address
      • Company
      • Datetime
      • Internet
      • Lorem
      • Phone number
      • Miscellaneous
      • Color
      • Credit card
      • File
      • Person
      • User agent
    • Localization
    • Randomness seed
    • Generator
  • Github
  • Website
  • Sponsor this project
Powered by GitBook
On this page
  • Install
  • Use

Was this helpful?

Edit on Git

Quick start

NextProviders

Last updated 4 years ago

Was this helpful?

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 , and by .

Install

First 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"

Python Faker
Ruby Faker
download