Skip to content

Latest commit

 

History

History
executable file
·
57 lines (41 loc) · 1.01 KB

README.md

File metadata and controls

executable file
·
57 lines (41 loc) · 1.01 KB

faker GoDoc Build Status

Faker is a golang package that generates fake data.

It was inspired by 'Python Faker' from joke2k (which is also the source of all the initial localized content) and 'Ruby Faker' from stympy


Getting Started

Install

go get -u github.com/rfsbraz/faker

Generate data

package main

import (
	"github.com/rfsbraz/faker"
	"log"
)

func main() {
	faker := NewFaker("pt_PT")
	log.Println(faker.Person.Name())
}

Roadmap


v1.0

Version 1.0 will feature the following modules:

  • Address
  • Barcode
  • Color
  • Company
  • CreditCard
  • Currency
  • DateTime
  • File
  • Internet
  • Job
  • Lorem
  • Miscellenous
  • Person
  • PhoneNumber
  • Profile
  • UserAgent