This program is faker by random-select and support multi locale. Now, support Japan only. So, if you want to support other locale, please pull request data of the locale. You can generate formatted dummy data as xxxx. When it is String, formatter is "xxxx". When it is not String, formatter is xxxx.
MIT
as Library
// Cargo.toml
fakes-gen = "version"
as CLI for latest version
cargo install --git https://github.com/ogata-k/fakes-gen-cli --branch master
or get from crates.io
cargo install fakes-gen
// s is user data quated by ".
FixedString(s)
FixedNotString(s)
// list is user data such the formed: ["s1", "s2", "s3"]
SelectString(list)
SelectNotString(list)
// unsigned integer n satisfied with from<=n<=to,
// you can generate dummy as joined n-data by space.
Word
Words(from, to)
Sentence
Sentences(from, to)
Paragraph
Paragraphs(from, to)
// When use with_furigana, you set true to furigana parameter.
FirstName(with_furigana)
FirstNameFurigana
LastName(with_furigana)
LastNameFurigana
FullName(with_furigana)
FullNameFurigana
// You can use from and to paramator such as Lorem.
// They are all not-String whithout Ascii.
Integer
IntegerRange(from, to)
Float
FloatRange(from, to)
// Ascii chars without space
Ascii(from, to)
Boolean
// You can use from and to paramator such as Lorem.
// Their data is sensitive, so I pay attention dummy data to be as possible as safety.
Email
UserName
Password(from, to)
CreditCard
URL
IPv4
IPv6
RGB
RGBA
UserAgent
StatusCode
CompanySuffix
CompanyName
Industry
Building
StreetName
CityName
StateName
CountryCode
CountryName
TimeZone
Address
// When you use number formatted as xxx-xxxx-xxx, set true to hyphen parameter.
ZipCode(hyphen)
DomesticPhoneNumber(hyphen)
Latitude
Longitude
// format-str: https://docs.rs/chrono/0.4.9/chrono/format/strftime/index.html
// String is format. default is "%Y-%m-%d %H:%I:%M"'s sub-format.
// But, When Time(Date, DateTime), use only Time(Date, Time/Date)-formatter.
// ex. "219-11-02 21:09:31"
Time(format)
Date(format)
DateTime(format)
FileName
Extension
fakes-gen [FLAGS] [OPTIONS] [option]...
// help message from fakes-gen -h
FLAGS:
-b, --bnf show Backus-Naur Form and detail format for options
-f, --fullform flag for generating as fullform such as body with header
-h, --help Print this message
-u, --usable show list of all usable options for faker
-V, --version Prints version information
OPTIONS:
-c, --converter <converter> converter for output [default: csv] [possible values: csv, tsv, json]
-l, --locale <locale> 3-char's country code. [default: jpn] [possible values: jpn]
-s, --size <size> data size. If 1, generate as record. If over 1, generate as data_set. [default: 1]
Usable format is form such as Xxxx.Yyyy(zzz)
or Xxxx.Yyyy(zzz#sub)
.
Xxxx
is Category. Usable Category is "Fixed", "Select", "Lorem", "Name", "Primitive", "Internet", "Company", "Address", "DateTime" and "FileSystem".
Yyyy
is Option for each Category. Usable Option is theirs and zzz
is <column_name>
.
If you use header or fullform, fakes-gen use <column_name>
.
```
// modified usable message from fakes-gen -u
Category:
Fixed // fixed value of user-value.
Options:
・Fixed.String(
Category:
Select // select a value from user-values.
Options:
・Select.String(
Category:
Lorem // dummy words
Options:
・Lorem.Word(
Category:
Name // name
Options:
・Name.FirstName(
Category:
Primitive // primitive values
Options:
・Primitive.Int(
Category:
Internet // internet
Options:
・Internet.Email(
Category:
Company // compnay
Options:
・Company.Suffix(
Category:
Address // address in country
Options:
・Address.Building(
Category:
DateTime // date time with sub-format of "%Y-%m-%d %H:%I:%M"
// If you want to know format, please reference to https://docs.rs/chrono/0.4.9/chrono/format/strftime/index.html#specifiers
Options:
・DateTime.Time(
Category:
FileSystem // file
Options:
・FileSystem.FileName(
And their option's format is theirs. [option] is \
```