A tool to anonymise CSV files, providing various options to substitute real data with plausable fake data.
Using Cargo (which you can install with https://rustup.rs):
cargo install anon-csv-cli
curl https://people.sc.fsu.edu/~jburkardt/data/csv/addresses.csv > addresses.csv
anon-csv ./addresses.csv 0:name.first_name 1:name.last_name 2:address.street_name 3:address.city 4:address.state_abbr 5:address.zip
Use the --header
flag to ignore the first line, usually the header, and the --delimiter <other delimiter>
flag
to use a different delimiter.
XSV is a tool to perform various operations on CSV files. It can be used in conjunction with this one for additional processing.
https://github.com/BurntSushi/xsv
``` Name.firstname Name.lastname Name.prefix Name.suffix Name.name Name.namewithmiddle Name.titledescriptor Name.titlelevel Name.title_job Name.title
Address.timezone Address.cityprefix Address.citysuffix Address.streetsuffix Address.state Address.stateabbr Address.city Address.streetname Address.buildingnumber Address.streetaddress Address.secondary_address Address.zip Address.postcode Address.latitude Address.longitude
Company.suffix Company.name Company.buzzword Company.catch_phrase Company.bs Company.profession Company.industry
Lorem.word Lorem.words Lorem.sentence Lorem.sentences Lorem.paragraph Lorem.paragraphs
Number.phonenumber Number.cellnumber Number.digit
Internet.freeemailprovider Internet.domainsuffix Internet.username Internet.freeemail Internet.safeemail Internet.password Internet.ip Internet.ipv4 Internet.ipv6 Internet.color Internet.user_agent
Boolean.simple ```