faker.providers.currency

class faker.providers.currency.Provider(generator)

Bases: faker.providers.BaseProvider

cryptocurrency()
Examples:
>>> Faker.seed(0)
>>> for _ in range(5):
...     fake.cryptocurrency()
...
('ZCL', 'Zclassic')
('IOTA', 'IOTA')
('PPC', 'Peercoin')
('KOI', 'Coinye')
('XDN', 'DigitalNote')
cryptocurrency_code()
Examples:
>>> Faker.seed(0)
>>> for _ in range(5):
...     fake.cryptocurrency_code()
...
'ZCL'
'IOTA'
'PPC'
'KOI'
'XDN'
cryptocurrency_name()
Examples:
>>> Faker.seed(0)
>>> for _ in range(5):
...     fake.cryptocurrency_name()
...
'Zclassic'
'IOTA'
'Peercoin'
'Coinye'
'DigitalNote'
currency()
Examples:
>>> Faker.seed(0)
>>> for _ in range(5):
...     fake.currency()
...
('TMT', 'Turkmenistan manat')
('SDG', 'Sudanese pound')
('JEP', 'Jersey pound')
('ETB', 'Ethiopian birr')
('LKR', 'Sri Lankan rupee')
currency_code()
Examples:
>>> Faker.seed(0)
>>> for _ in range(5):
...     fake.currency_code()
...
'TMT'
'SDG'
'JEP'
'ETB'
'LKR'
currency_name()
Examples:
>>> Faker.seed(0)
>>> for _ in range(5):
...     fake.currency_name()
...
'Turkmenistan manat'
'Sudanese pound'
'Jersey pound'
'Ethiopian birr'
'Sri Lankan rupee'
currency_symbol(code=None)
Example:$
Examples:
>>> Faker.seed(0)
>>> for _ in range(5):
...     fake.currency_symbol()
...
'฿'
'﷼'
'﷼'
'$'
'₸'