Locale de_AT¶
faker.providers.address
¶
- class faker.providers.address.de_AT.Provider(generator: Any)¶
Bases:
Provider
- address() str ¶
- Example:
‘791 Crist Parks, Sashabury, IL 86039-9874’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.address() ... 'Anna-Lena-Nemeth-Straße 4/7\n6938 Herzogenburg' 'Zettlstr. 41\n2578 Leibnitz' 'Nisa-Leonhartsberger-Weg 0\n9016 Steyregg' 'Evelyn-Schmied-Gasse 93\n4287 Bregenz' 'Dora-Peham-Ring 858\n4989 Neumarkt am Wallersee'
- administrative_unit() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.administrative_unit() ... 'Salzburg' 'Salzburg' 'Wien' 'Niederösterreich' 'Vorarlberg'
- building_number() str ¶
- Example:
‘791’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.building_number() ... '6/0' '8' '6/4' '5/9' '82'
- city() str ¶
- Example:
‘Sashabury’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.city() ... 'Mistelbach an der Zaya' 'Hainfeld' 'Mattersburg' 'Pinkafeld' 'Schrems'
- city_name() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.city_name() ... 'Mank' 'Mistelbach an der Zaya' 'Bad Radkersburg' 'Hainfeld' 'Radenthein'
- city_suffix() str ¶
- Example:
‘town’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.city_suffix() ... 'Ville' 'Ville' 'Ville' 'Ville' 'Ville'
- city_with_postcode() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.city_with_postcode() ... '7048 Mattersburg' '8593 Herzogenburg' '2948 Klagenfurt' '2578 Leibnitz' '6938 Neumarkt am Wallersee'
- country() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.country() ... 'Tonga' 'Kasachstan' 'Sri Lanka' 'Ungarn' 'Kroatien'
- country_code(representation: str = 'alpha-2') str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.country_code() ... 'MV' 'PS' 'NL' 'BB' 'IL'
- current_country() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.current_country() ... 'Austria' 'Austria' 'Austria' 'Austria' 'Austria'
- current_country_code() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.current_country_code() ... 'AT' 'AT' 'AT' 'AT' 'AT'
- postcode() str ¶
- Example:
86039-9874
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.postcode() ... '7604' '9764' '8593' '9242' '2948'
- state() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.state() ... 'Salzburg' 'Salzburg' 'Wien' 'Niederösterreich' 'Vorarlberg'
- street_address() str ¶
- Example:
‘791 Crist Parks’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.street_address() ... 'Bichlerring 6/4' 'Praxmarerplatz 42' 'Zettlstr. 41' 'Margreiterstr. 565' 'Leonhartsbergerstr. 0'
- street_name() str ¶
- Example:
‘Crist Parks’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.street_name() ... 'Simonstraße' 'Anna-Lena-Nemeth-Straße' 'Steinböckring' 'Klausnerstr.' 'Sara-Fink-Ring'
- street_suffix() str ¶
- Example:
‘Avenue’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.street_suffix() ... 'Street' 'Street' 'Street' 'Street' 'Street'
faker.providers.bank
¶
- class faker.providers.bank.de_AT.Provider(generator: Any)¶
Bases:
Provider
Implement bank provider for
de_AT
locale.- aba() str ¶
Generate an ABA routing transit number.
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.aba() ... '076048766' '057593829' '052194896' '034115783' '025659384'
- bank_country() str ¶
Generate the bank provider’s ISO 3166-1 alpha-2 country code.
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.bank_country() ... 'AT' 'AT' 'AT' 'AT' 'AT'
- bban() str ¶
Generate a Basic Bank Account Number (BBAN).
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.bban() ... '6604876475938242' '1948924115781565' '9387784080160975' '3513933287115871' '4841858398947196'
- iban() str ¶
Generate an International Bank Account Number (IBAN).
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.iban() ... 'AT456604876475938242' 'AT861948924115781565' 'AT929387784080160975' 'AT383513933287115871' 'AT734841858398947196'
- swift(length: int | None = None, primary: bool = False, use_dataset: bool = False) str ¶
Generate a SWIFT code.
SWIFT codes, reading from left to right, are composed of a 4 alphabet character bank code, a 2 alphabet character country code, a 2 alphanumeric location code, and an optional 3 alphanumeric branch code. This means SWIFT codes can only have 8 or 11 characters, so the value of
length
can only beNone
or the integers8
or11
. If the value isNone
, then a value of8
or11
will randomly be assigned.Because all 8-digit SWIFT codes already refer to the primary branch or office, the
primary
argument only has an effect if the value oflength
is11
. Ifprimary
isTrue
andlength
is11
, the 11-digit SWIFT codes generated will always end in'XXX'
to denote that they belong to primary branches/offices.For extra authenticity, localized providers may opt to include SWIFT bank codes, location codes, and branch codes used in their respective locales. If
use_dataset
isTrue
, this method will generate SWIFT codes based on those locale-specific codes if included. If those codes were not included, then it will behave as ifuse_dataset
wereFalse
, and in that mode, all those codes will just be randomly generated as per the specification.- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.swift() ... 'YNBIAT65ZT4' 'SGQEATSIGQ8' 'JDXCATV4' 'LNKTATN9' 'OQIBAT9AFZA'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.swift(length=8) ... 'MYNBATQ6' 'PMZJAT4W' 'SGQEATSI' 'YDTZATQ8' 'WZTEATTG'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.swift(length=8, use_dataset=True) ... 'MYNBATQ6' 'PMZJAT4W' 'SGQEATSI' 'YDTZATQ8' 'WZTEATTG'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.swift(length=11) ... 'MYNBATQ65ZT' 'PLSGAT6ISIG' 'TZIRATJTGEV' 'PRDLAT1UN94' 'OQIBAT9AFZA'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.swift(length=11, primary=True) ... 'MYNBATQ6XXX' 'PMZJAT4WXXX' 'SGQEATSIXXX' 'YDTZATQ8XXX' 'WZTEATTGXXX'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.swift(length=11, use_dataset=True) ... 'MYNBATQ65ZT' 'PLSGAT6ISIG' 'TZIRATJTGEV' 'PRDLAT1UN94' 'OQIBAT9AFZA'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.swift(length=11, primary=True, use_dataset=True) ... 'MYNBATQ6XXX' 'PMZJAT4WXXX' 'SGQEATSIXXX' 'YDTZATQ8XXX' 'WZTEATTGXXX'
- swift11(primary: bool = False, use_dataset: bool = False) str ¶
Generate an 11-digit SWIFT code.
This method uses
swift()
under the hood with thelength
argument set to11
. Ifprimary
is set toTrue
, the SWIFT code will always end with'XXX'
. All 11-digit SWIFT codes use this convention to refer to the primary branch/office.- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.swift11() ... 'MYNBATQ65ZT' 'PLSGAT6ISIG' 'TZIRATJTGEV' 'PRDLAT1UN94' 'OQIBAT9AFZA'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.swift11(use_dataset=True) ... 'MYNBATQ65ZT' 'PLSGAT6ISIG' 'TZIRATJTGEV' 'PRDLAT1UN94' 'OQIBAT9AFZA'
- swift8(use_dataset: bool = False) str ¶
Generate an 8-digit SWIFT code.
This method uses
swift()
under the hood with thelength
argument set to8
and with theprimary
argument omitted. All 8-digit SWIFT codes already refer to the primary branch/office.- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.swift8() ... 'MYNBATQ6' 'PMZJAT4W' 'SGQEATSI' 'YDTZATQ8' 'WZTEATTG'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.swift8(use_dataset=True) ... 'MYNBATQ6' 'PMZJAT4W' 'SGQEATSI' 'YDTZATQ8' 'WZTEATTG'
faker.providers.currency
¶
- class faker.providers.currency.de_AT.Provider(generator: Any)¶
Bases:
Provider
- cryptocurrency() Tuple[str, str] ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.cryptocurrency() ... ('XRP', 'Ripple') ('STC', 'SwiftCoin') ('BC', 'BlackCoin') ('NXT', 'Nxt') ('IOTA', 'IOTA')
- cryptocurrency_code() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.cryptocurrency_code() ... 'XRP' 'STC' 'BC' 'NXT' 'IOTA'
- cryptocurrency_name() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.cryptocurrency_name() ... 'Ripple' 'SwiftCoin' 'BlackCoin' 'Nxt' 'IOTA'
- currency() Tuple[str, str] ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.currency() ... ('MWK', 'Malawian kwacha') ('NZD', 'New Zealand dollar') ('BAM', 'Bosnia and Herzegovina convertible mark') ('IRR', 'Iranian rial') ('SPL', 'Seborga luigino')
- currency_code() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.currency_code() ... 'MWK' 'NZD' 'BAM' 'IRR' 'SPL'
- currency_name() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.currency_name() ... 'Malawian kwacha' 'New Zealand dollar' 'Bosnia and Herzegovina convertible mark' 'Iranian rial' 'Seborga luigino'
faker.providers.date_time
¶
- class faker.providers.date_time.de_AT.Provider(generator: Any)¶
Bases:
Provider
- am_pm() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.am_pm() ... 'AM' 'PM' 'PM' 'PM' 'PM'
- century() str ¶
- Example:
‘XVII’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.century() ... 'XIII' 'XIV' 'II' 'IX' 'XVII'
- date(pattern: str = '%Y-%m-%d', end_datetime: date | datetime | timedelta | str | int | None = None) str ¶
Get a date string between January 1, 1970 and now.
- Parameters:
pattern – Format of the date (year-month-day by default)
- Example:
‘2008-11-27’
- Returns:
Date
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date() ... '2016-03-29' '2011-07-04' '1993-01-11' '1984-03-06' '1997-12-30'
- date_between(start_date: date | datetime | timedelta | str | int = '-30y', end_date: date | datetime | timedelta | str | int = 'today') date ¶
Get a Date object based on a random date between two given dates. Accepts date strings that can be recognized by strtotime().
- Parameters:
start_date – Defaults to 30 years ago
end_date – Defaults to “today”
- Example:
Date(‘1999-02-02’)
- Returns:
Date
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_between() ... datetime.date(2020, 2, 3) datetime.date(2017, 6, 30) datetime.date(2007, 5, 17) datetime.date(2002, 7, 11) datetime.date(2010, 2, 4)
- date_between_dates(date_start: date | datetime | timedelta | str | int | None = None, date_end: date | datetime | timedelta | str | int | None = None) date ¶
Takes two Date objects and returns a random date between the two given dates. Accepts Date or datetime objects
- Parameters:
date_start – Date
date_end – Date
- Returns:
Date
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_between_dates() ... datetime.date(2024, 10, 4) datetime.date(2024, 10, 4) datetime.date(2024, 10, 4) datetime.date(2024, 10, 4) datetime.date(2024, 10, 4)
- date_object(end_datetime: datetime | None = None) date ¶
Get a date object between January 1, 1970 and now
- Example:
datetime.date(2016, 9, 20)
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_object() ... datetime.date(2016, 3, 29) datetime.date(2011, 7, 4) datetime.date(1993, 1, 11) datetime.date(1984, 3, 6) datetime.date(1997, 12, 30)
- date_of_birth(tzinfo: tzinfo | None = None, minimum_age: int = 0, maximum_age: int = 115) date ¶
Generate a random date of birth represented as a Date object, constrained by optional miminimum_age and maximum_age parameters.
- Parameters:
tzinfo – Defaults to None.
minimum_age – Defaults to 0.
maximum_age – Defaults to 115.
- Example:
Date(‘1979-02-02’)
- Returns:
Date
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_of_birth() ... datetime.date(2006, 9, 17) datetime.date(1996, 9, 5) datetime.date(1957, 7, 18) datetime.date(1938, 10, 17) datetime.date(1968, 1, 25)
- date_this_century(before_today: bool = True, after_today: bool = False) date ¶
Gets a Date object for the current century.
- Parameters:
before_today – include days in current century before today
after_today – include days in current century after today
- Example:
Date(‘2012-04-04’)
- Returns:
Date
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_this_century() ... datetime.date(2020, 11, 27) datetime.date(2018, 10, 7) datetime.date(2010, 5, 31) datetime.date(2006, 5, 30) datetime.date(2012, 8, 28)
- date_this_decade(before_today: bool = True, after_today: bool = False) date ¶
Gets a Date object for the decade year.
- Parameters:
before_today – include days in current decade before today
after_today – include days in current decade after today
- Example:
Date(‘2012-04-04’)
- Returns:
Date
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_this_decade() ... datetime.date(2024, 1, 7) datetime.date(2023, 8, 10) datetime.date(2021, 12, 31) datetime.date(2021, 3, 25) datetime.date(2022, 6, 7)
- date_this_month(before_today: bool = True, after_today: bool = False) date ¶
Gets a Date object for the current month.
- Parameters:
before_today – include days in current month before today
after_today – include days in current month after today
- Example:
dtdate(‘2012-04-04’)
- Returns:
dtdate
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_this_month() ... datetime.date(2024, 10, 3) datetime.date(2024, 10, 3) datetime.date(2024, 10, 2) datetime.date(2024, 10, 1) datetime.date(2024, 10, 2)
- date_this_year(before_today: bool = True, after_today: bool = False) date ¶
Gets a Date object for the current year.
- Parameters:
before_today – include days in current year before today
after_today – include days in current year after today
- Example:
Date(‘2012-04-04’)
- Returns:
Date
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_this_year() ... datetime.date(2024, 8, 21) datetime.date(2024, 7, 28) datetime.date(2024, 4, 26) datetime.date(2024, 3, 12) datetime.date(2024, 5, 21)
- date_time(tzinfo: tzinfo | None = None, end_datetime: date | datetime | timedelta | str | int | None = None) datetime ¶
Get a datetime object for a date between January 1, 1970 and now
- Parameters:
tzinfo – timezone, instance of datetime.tzinfo subclass
- Example:
datetime(‘2005-08-16 20:39:21’)
- Returns:
datetime
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_time() ... datetime.datetime(2016, 3, 29, 2, 49, 27, 506289) datetime.datetime(2011, 7, 4, 16, 46, 34, 499327) datetime.datetime(1993, 1, 11, 18, 29, 41, 542304) datetime.datetime(1984, 3, 6, 13, 2, 56, 245481) datetime.datetime(1997, 12, 30, 21, 45, 25, 230376)
- date_time_ad(tzinfo: tzinfo | None = None, end_datetime: date | datetime | timedelta | str | int | None = None, start_datetime: date | datetime | timedelta | str | int | None = None) datetime ¶
Get a datetime object for a date between January 1, 001 and now
- Parameters:
tzinfo – timezone, instance of datetime.tzinfo subclass
- Example:
datetime(‘1265-03-22 21:15:52’)
- Returns:
datetime
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_time_ad() ... datetime.datetime(1709, 11, 28, 5, 24, 22, 976143) datetime.datetime(1534, 12, 2, 16, 52, 48, 382698) datetime.datetime(852, 2, 19, 20, 52, 33, 586304) datetime.datetime(524, 12, 26, 15, 9, 37, 215332) datetime.datetime(1035, 9, 13, 6, 11, 6, 222580)
- date_time_between(start_date: date | datetime | timedelta | str | int = '-30y', end_date: date | datetime | timedelta | str | int = 'now', tzinfo: tzinfo | None = None) datetime ¶
Get a datetime object based on a random date between two given dates. Accepts date strings that can be recognized by strtotime().
- Parameters:
start_date – Defaults to 30 years ago
end_date – Defaults to “now”
tzinfo – timezone, instance of datetime.tzinfo subclass
- Example:
datetime(‘1999-02-02 11:42:52’)
- Returns:
datetime
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_time_between() ... datetime.datetime(2020, 2, 4, 2, 31, 26, 236214) datetime.datetime(2017, 7, 1, 15, 56, 12, 808743) datetime.datetime(2007, 5, 18, 21, 25, 53, 361449) datetime.datetime(2002, 7, 12, 14, 36, 29, 49189) datetime.datetime(2010, 2, 5, 17, 53, 25, 171082)
- date_time_between_dates(datetime_start: date | datetime | timedelta | str | int | None = None, datetime_end: date | datetime | timedelta | str | int | None = None, tzinfo: tzinfo | None = None) datetime ¶
Takes two datetime objects and returns a random datetime between the two given datetimes. Accepts datetime objects.
- Parameters:
datetime_start – datetime
datetime_end – datetime
tzinfo – timezone, instance of datetime.tzinfo subclass
- Example:
datetime(‘1999-02-02 11:42:52’)
- Returns:
datetime
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_time_between_dates() ... datetime.datetime(2024, 10, 4, 19, 20, 43) datetime.datetime(2024, 10, 4, 19, 20, 43) datetime.datetime(2024, 10, 4, 19, 20, 43) datetime.datetime(2024, 10, 4, 19, 20, 43) datetime.datetime(2024, 10, 4, 19, 20, 43)
- date_time_this_century(before_now: bool = True, after_now: bool = False, tzinfo: tzinfo | None = None) datetime ¶
Gets a datetime object for the current century.
- Parameters:
before_now – include days in current century before today
after_now – include days in current century after today
tzinfo – timezone, instance of datetime.tzinfo subclass
- Example:
datetime(‘2012-04-04 11:02:02’)
- Returns:
datetime
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_time_this_century() ... datetime.datetime(2020, 11, 27, 18, 53, 55, 879669) datetime.datetime(2018, 10, 7, 19, 1, 22, 142667) datetime.datetime(2010, 5, 31, 13, 37, 38, 657772) datetime.datetime(2006, 5, 30, 14, 13, 44, 277737) datetime.datetime(2012, 8, 28, 20, 51, 57, 886479)
- date_time_this_decade(before_now: bool = True, after_now: bool = False, tzinfo: tzinfo | None = None) datetime ¶
Gets a datetime object for the decade year.
- Parameters:
before_now – include days in current decade before today
after_now – include days in current decade after today
tzinfo – timezone, instance of datetime.tzinfo subclass
- Example:
datetime(‘2012-04-04 11:02:02’)
- Returns:
datetime
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_time_this_decade() ... datetime.datetime(2024, 1, 8, 6, 51, 35, 445932) datetime.datetime(2023, 8, 10, 22, 27, 24, 818089) datetime.datetime(2022, 1, 1, 7, 1, 4, 273222) datetime.datetime(2021, 3, 26, 4, 56, 39, 496833) datetime.datetime(2022, 6, 8, 0, 10, 54, 945239)
- date_time_this_month(before_now: bool = True, after_now: bool = False, tzinfo: tzinfo | None = None) datetime ¶
Gets a datetime object for the current month.
- Parameters:
before_now – include days in current month before today
after_now – include days in current month after today
tzinfo – timezone, instance of datetime.tzinfo subclass
- Example:
datetime(‘2012-04-04 11:02:02’)
- Returns:
datetime
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_time_this_month() ... datetime.datetime(2024, 10, 4, 5, 8, 2, 214921) datetime.datetime(2024, 10, 3, 21, 14, 7, 999726) datetime.datetime(2024, 10, 2, 14, 25, 2, 20355) datetime.datetime(2024, 10, 1, 23, 39, 2, 960917) datetime.datetime(2024, 10, 2, 22, 42, 9, 113199)
- date_time_this_year(before_now: bool = True, after_now: bool = False, tzinfo: tzinfo | None = None) datetime ¶
Gets a datetime object for the current year.
- Parameters:
before_now – include days in current year before today
after_now – include days in current year after today
tzinfo – timezone, instance of datetime.tzinfo subclass
- Example:
datetime(‘2012-04-04 11:02:02’)
- Returns:
datetime
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.date_time_this_year() ... datetime.datetime(2024, 8, 22, 14, 3, 7, 359185) datetime.datetime(2024, 7, 29, 13, 32, 37, 353174) datetime.datetime(2024, 4, 26, 20, 5, 45, 396312) datetime.datetime(2024, 3, 12, 22, 17, 14, 540652) datetime.datetime(2024, 5, 22, 0, 50, 42, 356991)
- day_of_month() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.day_of_month() ... '29' '04' '11' '06' '30'
- day_of_week()¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.day_of_week() ... 'Dienstag' 'Montag' 'Montag' 'Dienstag' 'Dienstag'
- future_date(end_date: date | datetime | timedelta | str | int = '+30d', tzinfo: tzinfo | None = None) date ¶
Get a Date object based on a random date between 1 day from now and a given date. Accepts date strings that can be recognized by strtotime().
- Parameters:
end_date – Defaults to “+30d”
tzinfo – timezone, instance of datetime.tzinfo subclass
- Example:
dtdate(‘2030-01-01’)
- Returns:
dtdate
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.future_date() ... datetime.date(2024, 10, 29) datetime.date(2024, 10, 26) datetime.date(2024, 10, 17) datetime.date(2024, 10, 12) datetime.date(2024, 10, 19)
- future_datetime(end_date: date | datetime | timedelta | str | int = '+30d', tzinfo: tzinfo | None = None) datetime ¶
Get a datetime object based on a random date between 1 second form now and a given date. Accepts date strings that can be recognized by strtotime().
- Parameters:
end_date – Defaults to “+30d”
tzinfo – timezone, instance of datetime.tzinfo subclass
- Example:
datetime(‘1999-02-02 11:42:52’)
- Returns:
datetime
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.future_datetime() ... datetime.datetime(2024, 10, 30, 3, 19, 44, 594731) datetime.datetime(2024, 10, 27, 13, 4, 21, 54467) datetime.datetime(2024, 10, 17, 10, 9, 25, 116942) datetime.datetime(2024, 10, 12, 13, 45, 55, 957843) datetime.datetime(2024, 10, 20, 3, 27, 47, 566513)
- iso8601(tzinfo: tzinfo | None = None, end_datetime: date | datetime | timedelta | str | int | None = None, sep: str = 'T', timespec: str = 'auto') str ¶
Get a timestamp in ISO 8601 format (or one of its profiles).
- Parameters:
tzinfo – timezone, instance of datetime.tzinfo subclass
sep – separator between date and time, defaults to ‘T’
timespec – format specifier for the time part, defaults to ‘auto’ - see datetime.isoformat() documentation
- Example:
‘2003-10-21T16:05:52+0000’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.iso8601() ... '2016-03-29T02:49:27.506289' '2011-07-04T16:46:34.499327' '1993-01-11T18:29:41.542304' '1984-03-06T13:02:56.245481' '1997-12-30T21:45:25.230376'
- month() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.month() ... '03' '07' '01' '03' '12'
- month_name()¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.month_name() ... 'März' 'Juli' 'Jänner' 'März' 'Dezember'
- past_date(start_date: date | datetime | timedelta | str | int = '-30d', tzinfo: tzinfo | None = None) date ¶
Get a Date object based on a random date between a given date and 1 day ago. Accepts date strings that can be recognized by strtotime().
- Parameters:
start_date – Defaults to “-30d”
tzinfo – timezone, instance of datetime.tzinfo subclass
- Example:
dtdate(‘1999-02-02’)
- Returns:
dtdate
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.past_date() ... datetime.date(2024, 9, 28) datetime.date(2024, 9, 25) datetime.date(2024, 9, 16) datetime.date(2024, 9, 11) datetime.date(2024, 9, 18)
- past_datetime(start_date: date | datetime | timedelta | str | int = '-30d', tzinfo: tzinfo | None = None) datetime ¶
Get a datetime object based on a random date between a given date and 1 second ago. Accepts date strings that can be recognized by strtotime().
- Parameters:
start_date – Defaults to “-30d”
tzinfo – timezone, instance of datetime.tzinfo subclass
- Example:
datetime(‘1999-02-02 11:42:52’)
- Returns:
datetime
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.past_datetime() ... datetime.datetime(2024, 9, 30, 3, 19, 43, 594731) datetime.datetime(2024, 9, 27, 13, 4, 20, 54467) datetime.datetime(2024, 9, 17, 10, 9, 24, 116942) datetime.datetime(2024, 9, 12, 13, 45, 54, 957843) datetime.datetime(2024, 9, 20, 3, 27, 46, 566513)
- pytimezone(*args: Any, **kwargs: Any) tzinfo | None ¶
Generate a random timezone (see faker.timezone for any args) and return as a python object usable as a tzinfo to datetime or other fakers.
- Example:
faker.pytimezone()
- Returns:
dateutil.tz.tz.tzfile
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.pytimezone() ... tzfile('/usr/share/zoneinfo/Indian/Maldives') tzfile('/usr/share/zoneinfo/America/Barbados') tzfile('/usr/share/zoneinfo/Europe/Stockholm') tzfile('/usr/share/zoneinfo/Africa/Windhoek') tzfile('/usr/share/zoneinfo/Asia/Qatar')
- time(pattern: str = '%H:%M:%S', end_datetime: date | datetime | timedelta | str | int | None = None) str ¶
Get a time string (24h format by default)
- Parameters:
pattern – format
- Example:
‘15:02:34’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.time() ... '02:49:27' '16:46:34' '18:29:41' '13:02:56' '21:45:25'
- time_delta(end_datetime: date | datetime | timedelta | str | int | None = None) timedelta ¶
Get a timedelta object
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.time_delta() ... datetime.timedelta(0) datetime.timedelta(0) datetime.timedelta(0) datetime.timedelta(0) datetime.timedelta(0)
- time_object(end_datetime: date | datetime | timedelta | str | int | None = None) time ¶
Get a time object
- Example:
datetime.time(15, 56, 56, 772876)
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.time_object() ... datetime.time(2, 49, 27, 506289) datetime.time(16, 46, 34, 499327) datetime.time(18, 29, 41, 542304) datetime.time(13, 2, 56, 245481) datetime.time(21, 45, 25, 230376)
- time_series(start_date: date | datetime | timedelta | str | int = '-30d', end_date: date | datetime | timedelta | str | int = 'now', precision: float | None = None, distrib: Callable[[datetime], float] | None = None, tzinfo: tzinfo | None = None) Iterator[Tuple[datetime, Any]] ¶
Returns a generator yielding tuples of
(<datetime>, <value>)
.The data points will start at
start_date
, and be at every time interval specified byprecision
.distrib
is a callable that accepts<datetime>
and returns<value>
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.time_series() ... <generator object Provider.time_series at 0x7fb0d235d850> <generator object Provider.time_series at 0x7fb0d235d850> <generator object Provider.time_series at 0x7fb0d235d850> <generator object Provider.time_series at 0x7fb0d235d850> <generator object Provider.time_series at 0x7fb0d235d850>
- timezone() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.timezone() ... 'Indian/Maldives' 'America/Barbados' 'Europe/Stockholm' 'Africa/Windhoek' 'Asia/Qatar'
- unix_time(end_datetime: date | datetime | timedelta | str | int | None = None, start_datetime: date | datetime | timedelta | str | int | None = None) float ¶
Get a timestamp between January 1, 1970 and now, unless passed explicit start_datetime or end_datetime values.
On Windows, the decimal part is always 0.
- Example:
1061306726.6
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.unix_time() ... 1459219767.506289 1309797994.4993267 726776981.5423039 447426176.2454813 883518325.2303758
faker.providers.geo
¶
- class faker.providers.geo.de_AT.Provider(generator: Any)¶
Bases:
Provider
- coordinate(center: float | None = None, radius: float | int = 0.001) Decimal ¶
Optionally center the coord and pick a point within radius.
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.coordinate() ... Decimal('26.826999') Decimal('45.792650') Decimal('-158.265114') Decimal('-40.995129') Decimal('94.488524')
- latitude() Decimal ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.latitude() ... Decimal('13.4134995') Decimal('22.896325') Decimal('-79.132557') Decimal('-20.4975645') Decimal('47.244262')
- latlng() Tuple[Decimal, Decimal] ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.latlng() ... (Decimal('13.4134995'), Decimal('45.792650')) (Decimal('-79.132557'), Decimal('-40.995129')) (Decimal('47.244262'), Decimal('80.880444')) (Decimal('18.6986795'), Decimal('-17.160223')) (Decimal('37.935520'), Decimal('12.226293'))
- local_latitude() Decimal ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.local_latitude() ... Decimal('48.295914') Decimal('48.122979') Decimal('47.448213') Decimal('47.124904') Decimal('47.629619')
- local_latlng(country_code: str = 'US', coords_only: bool = False) Tuple[str, ...] | None ¶
Returns a location known to exist on land in a country specified by country_code. Defaults to ‘en_US’. See the land_coords list for available locations/countries.
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.local_latlng() ... ('40.72371', '-73.95097', 'Greenpoint', 'US', 'America/New_York') ('41.48199', '-81.79819', 'Lakewood', 'US', 'America/New_York') ('30.17746', '-81.38758', 'Palm Valley', 'US', 'America/New_York') ('41.72059', '-87.70172', 'Evergreen Park', 'US', 'America/Chicago') ('33.93113', '-117.54866', 'Norco', 'US', 'America/Los_Angeles')
- local_longitude() Decimal ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.local_longitude() ... Decimal('14.749767') Decimal('14.403898') Decimal('13.054366') Decimal('12.407747') Decimal('13.417179')
- location_on_land(coords_only: bool = False) Tuple[str, ...] ¶
Returns a random tuple specifying a coordinate set guaranteed to exist on land. Format is (latitude, longitude, place name, two-letter country code, timezone) Pass coords_only to return coordinates without metadata.
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.location_on_land() ... ('40.56754', '-89.64066', 'Pekin', 'US', 'America/Chicago') ('25.13915', '73.06784', 'Sheoganj', 'IN', 'Asia/Kolkata') ('-7.60361', '37.00438', 'Kidodi', 'TZ', 'Africa/Dar_es_Salaam') ('33.35283', '-111.78903', 'Gilbert', 'US', 'America/Phoenix') ('17.54907', '82.85749', 'Elamanchili', 'IN', 'Asia/Kolkata')
faker.providers.internet
¶
- class faker.providers.internet.de_AT.Provider(generator: Any)¶
Bases:
Provider
- ascii_company_email() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ascii_company_email() ... 'asimon@hemetsberger.net' 'tsteinboeck@klausner-praxmarer.co.at' 'carlottafischer@reindl.org' 'ellaebner@boehler.com' 'gpfeifer@lederer-jenewein.org'
- ascii_email() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ascii_email() ... 'qbichler@kabsi.at' 'nisa59@gmail.com' 'maksim19@zettl-oberleitner.org' 'jonathan15@pfeifer-eder.com' 'ruben87@kabsi.at'
- ascii_free_email() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ascii_free_email() ... 'asimon@chello.at' 'siena76@gmx.at' 'lklausner@gmail.com' 'carlottafischer@chello.at' 'vanessa92@gmx.at'
- ascii_safe_email() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ascii_safe_email() ... 'asimon@example.org' 'siena76@example.com' 'lklausner@example.org' 'carlottafischer@example.org' 'vanessa92@example.com'
- company_email() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.company_email() ... 'asimon@hemetsberger.net' 'tsteinboeck@klausner-praxmarer.co.at' 'carlottafischer@reindl.org' 'ellaebner@boehler.com' 'gpfeifer@lederer-jenewein.org'
- dga(year: int | None = None, month: int | None = None, day: int | None = None, tld: str | None = None, length: int | None = None) str ¶
Generates a domain name by given date https://en.wikipedia.org/wiki/Domain_generation_algorithm
- Return type:
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.dga() ... 'hxqvaffcmfsccynscisxeajjagjahtnfcmfsccynscisxeajjagjahtnfcmfscc.com' 'meydkrgdcvulautulqvjofrrnbjkfmvrewtpfttqcjafdhxckmyfamohcpnldug.com' 'iiulfpgbvqcdaehnqkbxmaqgkykorlxnwy.co.at' 'cpyhexmtvewxpwiiaxtgdfajuhbsyaaykvgkgreki.at' 'uqniukqjckmjabijnuqholpsjayatffafysbsyaaytuquhbpmpviajxnaro.org'
- domain_name(levels: int = 1) str ¶
Produce an Internet domain name with the specified number of subdomain levels.
>>> domain_name() nichols-phillips.com >>> domain_name(2) williamson-hopkins.jackson.com
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.domain_name() ... 'simon-wittmann.net' 'hemetsberger.net' 'steinboeck-trattner.com' 'klausner-praxmarer.co.at' 'fink.at'
- domain_word() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.domain_word() ... 'simon-wittmann' 'bichler-hemetsberger' 'meindl' 'martin-klausner' 'wolf'
- email(safe: bool = True, domain: str | None = None) str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.email() ... 'asimon@example.org' 'siena76@example.com' 'lklausner@example.org' 'carlottafischer@example.org' 'vanessa92@example.com'
- free_email() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.free_email() ... 'asimon@chello.at' 'siena76@gmx.at' 'lklausner@gmail.com' 'carlottafischer@chello.at' 'vanessa92@gmx.at'
- free_email_domain() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.free_email_domain() ... 'kabsi.at' 'kabsi.at' 'chello.at' 'gmx.at' 'kabsi.at'
- hostname(levels: int = 1) str ¶
Produce a hostname with specified number of subdomain levels.
>>> hostname() db-01.nichols-phillips.com >>> hostname(0) laptop-56 >>> hostname(2) web-12.williamson-hopkins.jackson.com
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.hostname() ... 'web-66.hemetsberger.net' 'laptop-47.praxmarer-wolf.co.at' 'lt-24.sigl.org' 'web-48.stummer.co.at' 'desktop-11.kaltenbrunner.at'
- http_method() str ¶
Returns random HTTP method https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods
- Return type:
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.http_method() ... 'OPTIONS' 'OPTIONS' 'GET' 'DELETE' 'PATCH'
- http_status_code(include_unassigned: bool = True) int ¶
Returns random HTTP status code https://www.rfc-editor.org/rfc/rfc9110#name-status-codes :param include_unassigned: Whether to include status codes which have
not yet been assigned or are unused
- Returns:
a random three digit status code
- Return type:
- Example:
404
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.http_status_code() ... 532 297 488 555 315
- iana_id() str ¶
Returns IANA Registrar ID https://www.iana.org/assignments/registrar-ids/registrar-ids.xhtml
- Return type:
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.iana_id() ... '6463344' '7056021' '679216' '4343903' '8577767'
- image_url(width: int | None = None, height: int | None = None, placeholder_url: str | None = None) str ¶
Returns URL to placeholder image Example: http://placehold.it/640x480
- Parameters:
width – Optional image width
height – Optional image height
placeholder_url – Optional template string of image URLs from custom placeholder service. String must contain
{width}
and{height}
placeholders, eg:https:/example.com/{width}/{height}
.
- Return type:
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.image_url() ... 'https://picsum.photos/788/861' 'https://dummyimage.com/530x995' 'https://dummyimage.com/621x976' 'https://dummyimage.com/447x285' 'https://placekitten.com/286/194'
- ipv4(network: bool = False, address_class: str | None = None, private: str | None = None) str ¶
Returns a random IPv4 address or network with a valid CIDR.
- Parameters:
network – Network address
address_class – IPv4 address class (a, b, or c)
private – Public or private
- Returns:
IPv4
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ipv4() ... '171.174.170.81' '95.25.112.121' '51.105.121.194' '195.110.164.126' '141.250.247.54'
- ipv4_network_class() str ¶
Returns a IPv4 network class ‘a’, ‘b’ or ‘c’.
- Returns:
IPv4 network class
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ipv4_network_class() ... 'b' 'b' 'a' 'b' 'c'
- ipv4_private(network: bool = False, address_class: str | None = None) str ¶
Returns a private IPv4.
- Parameters:
network – Network address
address_class – IPv4 address class (a, b, or c)
- Returns:
Private IPv4
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ipv4_private() ... '172.29.117.82' '10.248.203.131' '172.25.180.188' '172.22.253.123' '192.168.71.140'
- ipv4_public(network: bool = False, address_class: str | None = None) str ¶
Returns a public IPv4 excluding private blocks.
- Parameters:
network – Network address
address_class – IPv4 address class (a, b, or c)
- Returns:
Public IPv4
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ipv4_public() ... '166.186.169.69' '111.198.92.30' '168.155.75.206' '141.250.247.54' '212.120.204.37'
- ipv6(network: bool = False) str ¶
Produce a random IPv6 address or network with a valid CIDR
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ipv6() ... 'e3e7:682:c209:4cac:629f:6fbf:d82c:7cd' 'f728:b4fa:4248:5e3a:a5d:2f35:6baa:9455' 'eb11:67b3:67a9:c378:7c65:c1e6:82e2:e662' 'f7c1:bd87:4da5:e709:d471:3d61:c8a7:639' 'e443:df78:9558:867f:5ba9:1fb0:7a02:4204'
- mac_address(multicast: bool = False) str ¶
Returns a random MAC address.
- Parameters:
multicast – Multicast address
- Returns:
MAC Address
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.mac_address() ... '66:c5:d7:14:84:f8' '48:9b:f4:b7:6f:47' '18:47:30:80:4b:9e' '6e:25:a9:f1:33:b5' '0e:a1:68:f4:e2:85'
- nic_handle(suffix: str = 'FAKE') str ¶
Returns NIC Handle ID https://www.apnic.net/manage-ip/using-whois/guide/person/
- Return type:
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.nic_handle() ... 'ZYT1598-FAKE' 'SIW493-FAKE' 'UE59352-FAKE' 'WBUN892-FAKE' 'CHQD98-FAKE'
- nic_handles(count: int = 1, suffix: str = '????') List[str] ¶
Returns NIC Handle ID list
>>> Faker.seed(0) >>> for _ in range(5): ... fake.nic_handles() ... ['ZYT1598-EWLN'] ['WGNZ53-QITZ'] ['UERV52-EJGW'] ['CHQ498-DZJA'] ['UU1864-TEMK']
- port_number(is_system: bool = False, is_user: bool = False, is_dynamic: bool = False) int ¶
Returns a network port number https://tools.ietf.org/html/rfc6335
- Parameters:
is_system – System or well-known ports
is_user – User or registered ports
is_dynamic – Dynamic / private / ephemeral ports
- Return type:
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.port_number() ... 50494 55125 5306 33936 63691
- ripe_id() str ¶
Returns RIPE Organization ID https://www.ripe.net/manage-ips-and-asns/db/support/organisation-object-in-the-ripe-database
- Return type:
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ripe_id() ... 'ORG-ZYT1598-RIPE' 'ORG-SIW493-RIPE' 'ORG-UE59352-RIPE' 'ORG-WBUN892-RIPE' 'ORG-CHQD98-RIPE'
- safe_domain_name() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.safe_domain_name() ... 'example.com' 'example.com' 'example.org' 'example.com' 'example.net'
- safe_email() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.safe_email() ... 'asimon@example.org' 'siena76@example.com' 'lklausner@example.org' 'carlottafischer@example.org' 'vanessa92@example.com'
- slug(value: str | None = None) str ¶
Django algorithm
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.slug() ... 'three-image-son' 'kitchen-amount' 'much-mention' 'why-step-themselves' 'me-help-past-wait'
- tld() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.tld() ... 'net' 'net' 'at' 'com' 'org'
- uri(schemes: List[str] | None = None, deep: int | None = None) str ¶
- Parameters:
schemes – a list of strings to use as schemes, one will chosen randomly. If None, it will generate http and https uris. Passing an empty list will result in schemeless uri generation like “://domain.com/index.html”.
deep – an integer specifying how many path components the URI should have..
- Returns:
a random url string.
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.uri() ... 'https://steinboeck-trattner.com/categorylogin.jsp' 'https://stockinger.org/list/wp-content/mainsearch.html' 'http://pfeifer-eder.com/explorehome.php' 'https://brunner-streicher.org/tags/wp-content/categoriesregister.asp' 'http://www.mitteregger.com/list/blog/postsabout.html'
- uri_extension() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.uri_extension() ... '.php' '.php' '.html' '.htm' '.asp'
- uri_page() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.uri_page() ... 'author' 'category' 'privacy' 'category' 'index'
- uri_path(deep: int | None = None) str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.uri_path() ... 'posts/tag' 'explore/tag' 'explore/category' 'blog' 'category'
- url(schemes: List[str] | None = None) str ¶
- Parameters:
schemes – a list of strings to use as schemes, one will chosen randomly. If None, it will generate http and https urls. Passing an empty list will result in schemeless url generation like “://domain.com”.
- Returns:
a random url string.
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.url() ... 'https://hemetsberger.net/' 'https://klausner-praxmarer.co.at/' 'http://sigl.org/' 'https://www.ebner-schwarzinger.at/' 'https://eder.com/'
faker.providers.lorem
¶
- class faker.providers.lorem.de_AT.Provider(generator: Any)¶
Bases:
Provider
Implement lorem provider for
de_DE
locale. Using the same as in`de_DE`
.- get_words_list(part_of_speech: str | None = None, ext_word_list: Sequence[str] | None = None) List[str] ¶
Get list of words.
ext_word_list
is a parameter that allows the user to provide a list of words to be used instead of the built-in word list. Ifext_word_list
is provided, then the value ofpart_of_speech
is ignored.part_of_speech
is a parameter that defines to what part of speech the returned word belongs. Ifext_word_list
is notNone
, thenpart_of_speech
is ignored. If the value ofpart_of_speech
does not correspond to an existent part of speech according to the set locale, then an exception is raised.Warning
Depending on the length of a locale provider’s built-in word list or on the length of
ext_word_list
if provided, a largenb
can exhaust said lists ifunique
isTrue
, raising an exception.- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.get_words_list(part_of_speech="abc", ext_word_list=['abc', 'def', 'ghi', 'jkl']) ... ['abc', 'def', 'ghi', 'jkl'] ['abc', 'def', 'ghi', 'jkl'] ['abc', 'def', 'ghi', 'jkl'] ['abc', 'def', 'ghi', 'jkl'] ['abc', 'def', 'ghi', 'jkl']
>>> Faker.seed(0) >>> for _ in range(5): ... fake.get_words_list(ext_word_list=['abc', 'def', 'ghi', 'jkl']) ... ['abc', 'def', 'ghi', 'jkl'] ['abc', 'def', 'ghi', 'jkl'] ['abc', 'def', 'ghi', 'jkl'] ['abc', 'def', 'ghi', 'jkl'] ['abc', 'def', 'ghi', 'jkl']
- paragraph(nb_sentences: int = 3, variable_nb_sentences: bool = True, ext_word_list: Sequence[str] | None = None) str ¶
Generate a paragraph.
The
nb_sentences
argument controls how many sentences the paragraph will contain, and settingvariable_nb_sentences
toFalse
will generate the exact amount, while setting it toTrue
(default) will generate a random amount (+/-40%, minimum of 1) usingrandomize_nb_elements()
.Under the hood,
sentences()
is used to generate the sentences, so the argumentext_word_list
works in the same way here as it would in that method.- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.paragraph(nb_sentences=5) ... 'Auch Zahl laufen wenn turnen zehn. Name weit lernen fährt sofort nämlich. Zurück man Schuh nicht der. Seit weg Schiff Küche. Haben gern Papa erklären.' 'Kann los bei wenn wenig Boden uns. Ab legen Vogel fiel gestern vom einmal Mädchen. Suchen denken mein Blume zwischen. Über leben gefährlich ganz darauf ging werden. Wünschen nicht nass Katze nennen. Gern Feuer einfach traurig Apfel Zug.' 'Beispiel schenken dauern deshalb Arzt Bett schon. Schiff und Luft los Ferien Essen schenken. Nacht kennen richtig über wenig Stelle. Gestern dafür nass Glas.' 'Also fröhlich Schuh heißen drei. Tisch bringen der schnell Auge müde. Nicht bekommen darauf einigen turnen danach Blume. Arbeiten am Wort einfach.' 'Erzählen Stunde Winter an ist bringen Frau. Beißen gefährlich Junge Baum krank. Bringen zusammen er halten seit uns wenn drehen.'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.paragraph(nb_sentences=5, variable_nb_sentences=False) ... 'Sohn in Frau Licht hängen Stadt. Zehn halten was etwas dem. Sofort nämlich Flasche weiter. Weihnachten Geld seit weg Schiff Küche bringen jung. Papa erklären Minute kann los bei wenn wenig.' 'Schüler holen trinken rund. Nun tun ging. Schreien bei wenig Fahrrad suchen denken. Kein Bett Geschichte letzte wieder böse Milch. Merken Tier Meer wünschen.' 'Merken für Blume Straße gern Feuer einfach traurig. Nun reiten Land. Schenken dauern deshalb Arzt. Weg werfen mehr hin. Früher tief vergessen waschen neben wo Nacht.' 'Leben Pferd schreiben zum halten gestern dafür. Ohne unter fiel seit damit fahren Stelle ging. Bringen der schnell Auge. Onkel will nicht bekommen darauf einigen turnen. Hin heiß Zug arbeiten.' 'Eltern Zeit Schüler. Erzählen Stunde Winter an ist bringen Frau. Beißen gefährlich Junge Baum krank. Bringen zusammen er halten seit uns wenn drehen. Zehn Bauer schauen unter glücklich.'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.paragraph(nb_sentences=5, ext_word_list=['abc', 'def', 'ghi', 'jkl']) ... 'Abc jkl def jkl jkl jkl. Ghi jkl ghi def jkl ghi. Jkl ghi ghi ghi abc. Ghi jkl ghi def. Def def ghi abc.' 'Def ghi abc jkl jkl abc jkl. Abc def jkl abc def jkl abc ghi. Jkl abc ghi abc jkl. Jkl def def def abc def jkl. Jkl ghi ghi def ghi. Def abc abc jkl abc jkl.' 'Abc ghi abc abc abc abc ghi. Ghi jkl ghi ghi abc abc ghi. Ghi def ghi jkl jkl jkl. Def abc ghi def.' 'Abc def ghi def abc. Jkl abc abc ghi abc ghi. Ghi abc abc abc jkl abc abc. Abc abc jkl abc.' 'Abc jkl jkl abc def abc def. Abc def def abc def. Abc jkl abc def ghi jkl jkl abc.'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.paragraph(nb_sentences=5, variable_nb_sentences=False, ext_word_list=['abc', 'def', 'ghi', 'jkl']) ... 'Jkl def def ghi def jkl. Jkl def jkl abc abc. Jkl ghi def jkl. Jkl def ghi jkl ghi def abc def. Ghi abc ghi def ghi abc jkl jkl.' 'Ghi def jkl ghi. Ghi jkl def. Ghi abc jkl abc jkl abc. Def abc def ghi jkl abc ghi. Ghi jkl ghi jkl.' 'Ghi def abc jkl def abc abc jkl. Ghi ghi def. Ghi abc abc abc. Jkl jkl ghi def. Def jkl jkl jkl ghi jkl ghi.' 'Def ghi ghi jkl def def abc. Ghi jkl abc ghi abc abc jkl def. Abc abc ghi abc. Ghi jkl ghi abc abc abc jkl. Def def jkl abc.' 'Abc jkl ghi. Abc jkl jkl abc def abc def. Abc def def abc def. Abc jkl abc def ghi jkl jkl abc. Jkl abc ghi jkl def.'
- paragraphs(nb: int = 3, ext_word_list: Sequence[str] | None = None) List[str] ¶
Generate a list of paragraphs.
This method uses
paragraph()
under the hood to generate paragraphs, and thenb
argument controls exactly how many sentences the list will contain. Theext_word_list
argument works in exactly the same way as well.- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.paragraphs(nb=5) ... ['Auch Zahl laufen wenn turnen zehn. Name weit lernen fährt sofort nämlich. Zurück man Schuh nicht der.', 'Weg Schiff Küche bringen. Gern Papa erklären Minute kann los.', 'Wenig Boden uns schwer stark offen nun. Fiel gestern vom einmal Mädchen fertig.', 'Kein Bett Geschichte letzte wieder böse Milch. Merken Tier Meer wünschen.', 'Nass Katze nennen hier müssen ganz einmal. Apfel Zug Frau Beispiel. Vorbei werfen unten weg. Schiff und Luft los Ferien Essen schenken.'] ['Früher Leben Pferd schreiben zum halten gestern dafür. Ohne unter fiel seit damit fahren Stelle ging. Bringen der schnell Auge.', 'Nicht bekommen darauf einigen turnen danach Blume. Arbeiten am Wort einfach. Lange sehr Baum schenken.', 'Ob um Beispiel beißen gefährlich Junge. Lernen Arzt bringen zusammen. Frau weil können Weihnachten mögen.', 'Stehen dir Dorf mal. Nennen kann dunkel Küche.', 'Vor wenn Rad Himmel rennen dick schlimm. Sicher glauben aus fährt fest wohl Haare. Schaffen neben was verlieren davon.'] ['Sind turnen Bett nein schon doch. Packen heraus vor mögen ihr.', 'Immer rot aus Katze Frau Ding machen. Weit nichts ab Arzt gesund und baden. Einigen überall Oma bin sehen zurück.', 'Gern essen schön Abend treffen machen. Einmal nimmt endlich gegen. Brief verlieren hoch Bild.', 'Stunde dafür fragen reich tot Platz dafür. Fußball alt auch schicken.', 'Wissen Winter weiter auf sind schreiben. Schwester Weihnachten Papa heißen Maus erst nass. Dem fröhlich gleich.'] ['Gleich ob auch dort. Gab hinter mich gar lange fest Auto eigentlich. Sein gegen um Geburtstag böse Monate langsam.', 'Darauf dafür Lehrerin Arzt Glas schlagen. Wer offen her ziehen. Beim bin singen bei.', 'Hinein Loch kein laut.', 'Ins Haus zusammen frei sprechen. Eis dafür traurig verlieren Angst lustig. Danach hoch erst auf Wissen. Oder Bruder klettern hart tun.', 'Zum deshalb hängen schenken vorbei Lehrer wenig Gesicht. Überall Onkel vor mein wieder Affe Schuh.'] ['Arbeit deshalb fragen Stadt unten Name. Beim bin voll Arzt Familie auch als. Gibt doch deshalb reiten zeigen lesen Weg.', 'Müde schenken Tag. Zwei sieht weinen erschrecken Mann neu trinken las. Nie Fenster vier am war sicher.', 'Möglich ging legen frei trinken Spiel heute. Bei Papa darin für turnen bauen.', 'Im Leben vielleicht schön schaffen dich zurück.', 'Nun Hilfe aus. Springen am neu davon gestern schon Rad. Heute sprechen leben wahr noch.']
>>> Faker.seed(0) >>> for _ in range(5): ... fake.paragraphs(nb=5, ext_word_list=['abc', 'def', 'ghi', 'jkl']) ... ['Abc jkl def jkl jkl jkl. Ghi jkl ghi def jkl ghi. Jkl ghi ghi ghi abc.', 'Jkl ghi def abc. Def ghi abc ghi def ghi.', 'Jkl abc jkl ghi jkl ghi ghi. Abc def jkl abc ghi abc.', 'Def abc def ghi jkl abc ghi. Ghi jkl ghi jkl.', 'Ghi def ghi def ghi def abc. Abc jkl def abc. Jkl jkl jkl jkl. Ghi jkl ghi ghi abc abc ghi.'] ['Def def ghi ghi jkl def def abc. Ghi jkl abc ghi abc abc jkl def. Abc abc ghi abc.', 'Ghi abc abc abc jkl abc abc. Abc abc jkl abc. Def ghi abc ghi.', 'Ghi jkl abc abc def def. Ghi abc abc jkl. Def jkl def jkl ghi.', 'Jkl abc abc ghi. Ghi def abc def.', 'Jkl jkl ghi def ghi abc ghi. Ghi def abc def abc jkl def. Ghi ghi jkl jkl abc.'] ['Ghi jkl abc ghi ghi abc. Ghi def jkl ghi def.', 'Def ghi abc def def abc ghi. Jkl ghi abc abc def jkl abc. Abc jkl ghi abc ghi jkl.', 'Def abc ghi abc jkl ghi. Abc ghi abc def. Abc jkl def abc.', 'Jkl abc def ghi jkl ghi abc. Def abc abc ghi.', 'Jkl jkl jkl abc ghi ghi. Ghi jkl ghi def ghi abc ghi. Abc def def.'] ['Def ghi abc abc. Def def ghi def def abc abc abc. Ghi def jkl def abc ghi def.', 'Abc abc def abc def ghi. Jkl ghi def jkl. Abc abc ghi abc.', 'Def ghi def def.', 'Def def jkl def jkl. Abc abc jkl jkl abc ghi. Abc def abc abc jkl. Ghi abc def def jkl.', 'Jkl abc def ghi jkl def jkl def. Jkl ghi jkl ghi jkl abc ghi.'] ['Abc abc def jkl jkl ghi. Abc abc jkl abc abc abc abc. Def abc abc ghi jkl ghi jkl.', 'Ghi ghi jkl. Jkl ghi jkl abc ghi ghi jkl def. Ghi abc jkl abc jkl ghi.', 'Ghi def def def jkl jkl def. Abc ghi abc def jkl abc.', 'Def def jkl ghi ghi abc jkl.', 'Ghi def abc. Jkl abc ghi abc def ghi ghi. Def jkl def jkl ghi.']
- sentence(nb_words: int = 6, variable_nb_words: bool = True, ext_word_list: Sequence[str] | None = None) str ¶
Generate a sentence.
The
nb_words
argument controls how many words the sentence will contain, and settingvariable_nb_words
toFalse
will generate the exact amount, while setting it toTrue
(default) will generate a random amount (+/-40%, minimum of 1) usingrandomize_nb_elements()
.Under the hood,
words()
is used to generate the words, so the argumentext_word_list
works in the same way here as it would in that method.- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.sentence(nb_words=10) ... 'Sohn in Frau Licht hängen Stadt gegen Land Name weit.' 'Dem dem brauchen Stunde zurück man Schuh nicht der Brief bekommen verkaufen.' 'Küche bringen jung noch weiß zehn Land vier frei Tag.' 'Wenig Boden uns schwer stark offen nun tun ging seit schreien bei wenig.' 'Fertig zehn suchen kein Bett Geschichte letzte wieder.'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.sentence(nb_words=10, variable_nb_words=False) ... 'Unter Sohn in Frau Licht hängen Stadt gegen Land Name.' 'Weit lernen fährt sofort nämlich Flasche weiter zum Teller Weihnachten.' 'Geld seit weg Schiff Küche bringen jung noch weiß zehn.' 'Land vier frei Tag mich als Schüler holen trinken rund.' 'Ab legen Vogel fiel gestern vom einmal Mädchen fertig zehn.'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.sentence(nb_words=10, ext_word_list=['abc', 'def', 'ghi', 'jkl']) ... 'Jkl def def ghi def jkl def def ghi jkl.' 'Abc abc abc jkl jkl ghi ghi ghi abc abc abc jkl.' 'Def abc def ghi jkl jkl def jkl def jkl.' 'Jkl abc jkl ghi jkl ghi ghi jkl def ghi ghi abc jkl.' 'Abc jkl jkl def abc def ghi jkl.'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.sentence(nb_words=10, variable_nb_words=True, ext_word_list=['abc', 'def', 'ghi', 'jkl']) ... 'Jkl def def ghi def jkl def def ghi jkl.' 'Abc abc abc jkl jkl ghi ghi ghi abc abc abc jkl.' 'Def abc def ghi jkl jkl def jkl def jkl.' 'Jkl abc jkl ghi jkl ghi ghi jkl def ghi ghi abc jkl.' 'Abc jkl jkl def abc def ghi jkl.'
- sentences(nb: int = 3, ext_word_list: Sequence[str] | None = None) List[str] ¶
Generate a list of sentences.
This method uses
sentence()
under the hood to generate sentences, and thenb
argument controls exactly how many sentences the list will contain. Theext_word_list
argument works in exactly the same way as well.- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.sentences() ... ['Sohn in Frau Licht hängen Stadt.', 'Zehn halten was etwas dem.', 'Sofort nämlich Flasche weiter.'] ['Weihnachten Geld seit weg Schiff Küche bringen jung.', 'Papa erklären Minute kann los bei wenn wenig.', 'Schüler holen trinken rund.'] ['Nun tun ging.', 'Schreien bei wenig Fahrrad suchen denken.', 'Kein Bett Geschichte letzte wieder böse Milch.'] ['Merken Tier Meer wünschen.', 'Merken für Blume Straße gern Feuer einfach traurig.', 'Nun reiten Land.'] ['Schenken dauern deshalb Arzt.', 'Weg werfen mehr hin.', 'Früher tief vergessen waschen neben wo Nacht.']
>>> Faker.seed(0) >>> for _ in range(5): ... fake.sentences(nb=5) ... ['Sohn in Frau Licht hängen Stadt.', 'Zehn halten was etwas dem.', 'Sofort nämlich Flasche weiter.', 'Weihnachten Geld seit weg Schiff Küche bringen jung.', 'Papa erklären Minute kann los bei wenn wenig.'] ['Schüler holen trinken rund.', 'Nun tun ging.', 'Schreien bei wenig Fahrrad suchen denken.', 'Kein Bett Geschichte letzte wieder böse Milch.', 'Merken Tier Meer wünschen.'] ['Merken für Blume Straße gern Feuer einfach traurig.', 'Nun reiten Land.', 'Schenken dauern deshalb Arzt.', 'Weg werfen mehr hin.', 'Früher tief vergessen waschen neben wo Nacht.'] ['Leben Pferd schreiben zum halten gestern dafür.', 'Ohne unter fiel seit damit fahren Stelle ging.', 'Bringen der schnell Auge.', 'Onkel will nicht bekommen darauf einigen turnen.', 'Hin heiß Zug arbeiten.'] ['Eltern Zeit Schüler.', 'Erzählen Stunde Winter an ist bringen Frau.', 'Beißen gefährlich Junge Baum krank.', 'Bringen zusammen er halten seit uns wenn drehen.', 'Zehn Bauer schauen unter glücklich.']
>>> Faker.seed(0) >>> for _ in range(5): ... fake.sentences(nb=5, ext_word_list=['abc', 'def', 'ghi', 'jkl']) ... ['Jkl def def ghi def jkl.', 'Jkl def jkl abc abc.', 'Jkl ghi def jkl.', 'Jkl def ghi jkl ghi def abc def.', 'Ghi abc ghi def ghi abc jkl jkl.'] ['Ghi def jkl ghi.', 'Ghi jkl def.', 'Ghi abc jkl abc jkl abc.', 'Def abc def ghi jkl abc ghi.', 'Ghi jkl ghi jkl.'] ['Ghi def abc jkl def abc abc jkl.', 'Ghi ghi def.', 'Ghi abc abc abc.', 'Jkl jkl ghi def.', 'Def jkl jkl jkl ghi jkl ghi.'] ['Def ghi ghi jkl def def abc.', 'Ghi jkl abc ghi abc abc jkl def.', 'Abc abc ghi abc.', 'Ghi jkl ghi abc abc abc jkl.', 'Def def jkl abc.'] ['Abc jkl ghi.', 'Abc jkl jkl abc def abc def.', 'Abc def def abc def.', 'Abc jkl abc def ghi jkl jkl abc.', 'Jkl abc ghi jkl def.']
- text(max_nb_chars: int = 200, ext_word_list: Sequence[str] | None = None) str ¶
Generate a text string.
The
max_nb_chars
argument controls the approximate number of characters the text string will have, and depending on its value, this method may use eitherwords()
,sentences()
, orparagraphs()
for text generation. Theext_word_list
argument works in exactly the same way it would in any of those methods.- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.text(max_nb_chars=20) ... 'Verlieren Himmel.' 'Weg ist auch frei.' 'Liegen leben ich.' 'Stein und gehören.' 'Las hart natürlich.'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.text(max_nb_chars=80) ... 'Sohn in Frau Licht hängen Stadt. Zehn halten was etwas dem.' 'Weihnachten Geld seit weg Schiff Küche bringen jung.' 'Schüler holen trinken rund. Nun tun ging.' 'Kein Bett Geschichte letzte wieder böse Milch. Merken Tier Meer wünschen.' 'Nun reiten Land. Schenken dauern deshalb Arzt. Weg werfen mehr hin.'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.text(max_nb_chars=160) ... 'Auch Zahl laufen wenn turnen zehn. Name weit lernen fährt sofort nämlich. Zurück man Schuh nicht der.' 'Wenig Boden uns schwer stark offen nun. Fiel gestern vom einmal Mädchen fertig.\nKein Bett Geschichte letzte wieder böse Milch. Merken Tier Meer wünschen.' 'Früher Leben Pferd schreiben zum halten gestern dafür. Ohne unter fiel seit damit fahren Stelle ging. Bringen der schnell Auge.' 'Ob um Beispiel beißen gefährlich Junge. Lernen Arzt bringen zusammen. Frau weil können Weihnachten mögen.\nStehen dir Dorf mal. Nennen kann dunkel Küche.' 'Sind turnen Bett nein schon doch. Packen heraus vor mögen ihr.'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.text(ext_word_list=['abc', 'def', 'ghi', 'jkl']) ... 'Abc jkl def jkl jkl jkl. Ghi jkl ghi def jkl ghi. Jkl ghi ghi ghi abc.\nJkl ghi def abc. Def ghi abc ghi def ghi.\nJkl abc jkl ghi jkl ghi ghi. Abc def jkl abc ghi abc.' 'Ghi def ghi def ghi def abc. Abc jkl def abc. Jkl jkl jkl jkl. Ghi jkl ghi ghi abc abc ghi.\nDef def ghi ghi jkl def def abc. Ghi jkl abc ghi abc abc jkl def. Abc abc ghi abc.' 'Ghi jkl abc abc def def. Ghi abc abc jkl. Def jkl def jkl ghi.\nJkl abc abc ghi. Ghi def abc def.\nJkl jkl ghi def ghi abc ghi. Ghi def abc def abc jkl def. Ghi ghi jkl jkl abc.' 'Def ghi abc def def abc ghi. Jkl ghi abc abc def jkl abc. Abc jkl ghi abc ghi jkl.\nDef abc ghi abc jkl ghi. Abc ghi abc def. Abc jkl def abc.\nJkl abc def ghi jkl ghi abc. Def abc abc ghi.' 'Def ghi abc abc. Def def ghi def def abc abc abc. Ghi def jkl def abc ghi def.\nAbc abc def abc def ghi. Jkl ghi def jkl. Abc abc ghi abc.\nDef ghi def def.'
- texts(nb_texts: int = 3, max_nb_chars: int = 200, ext_word_list: Sequence[str] | None = None) List[str] ¶
Generate a list of text strings.
The
nb_texts
argument controls how many text strings the list will contain, and this method usestext()
under the hood for text generation, so the two remaining arguments,max_nb_chars
andext_word_list
will work in exactly the same way as well.- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.texts(nb_texts=5) ... ['Auch Zahl laufen wenn turnen zehn. Name weit lernen fährt sofort nämlich. Zurück man Schuh nicht der.\nWeg Schiff Küche bringen. Gern Papa erklären Minute kann los.', 'Kein Bett Geschichte letzte wieder böse Milch. Merken Tier Meer wünschen.', 'Früher Leben Pferd schreiben zum halten gestern dafür. Ohne unter fiel seit damit fahren Stelle ging. Bringen der schnell Auge.', 'Ob um Beispiel beißen gefährlich Junge. Lernen Arzt bringen zusammen. Frau weil können Weihnachten mögen.\nStehen dir Dorf mal. Nennen kann dunkel Küche.', 'Sind turnen Bett nein schon doch. Packen heraus vor mögen ihr.\nImmer rot aus Katze Frau Ding machen. Weit nichts ab Arzt gesund und baden. Einigen überall Oma bin sehen zurück.'] ['Stunde dafür fragen reich tot Platz dafür. Fußball alt auch schicken.\nWissen Winter weiter auf sind schreiben. Schwester Weihnachten Papa heißen Maus erst nass. Dem fröhlich gleich.', 'Darauf dafür Lehrerin Arzt Glas schlagen. Wer offen her ziehen. Beim bin singen bei.\nHinein Loch kein laut.', 'Zum deshalb hängen schenken vorbei Lehrer wenig Gesicht. Überall Onkel vor mein wieder Affe Schuh.', 'Müde schenken Tag. Zwei sieht weinen erschrecken Mann neu trinken las. Nie Fenster vier am war sicher.\nMöglich ging legen frei trinken Spiel heute. Bei Papa darin für turnen bauen.', 'Nun Hilfe aus. Springen am neu davon gestern schon Rad. Heute sprechen leben wahr noch.\nOma gleich darauf Schiff oben stehen darin weiß. Wenig von schicken Teller Loch. Arzt hin heißen einmal halbe.'] ['Brief spielen selbst antworten. Jeder im Lehrer vier gestern fliegen Haare. Hand Angst grün alle.\nBeispiel was erst erklären schaffen Winter. Sind gar schlecht wieder.', 'Opa einfach zwischen Brot nah Ding weg. Suchen gern fiel so.\nImmer aus davon am besser bekommen. Geburtstag im Wetter neben Geburtstag haben.', 'Nie die schreien wichtig einfach in dunkel. Glück Luft halbe Oma bis so Garten.\nKommen etwas dafür zu gefährlich nimmt ist singen. Scheinen sollen fehlen Sommer. Oma am Freund rund ab.', 'Erzählen Bruder wohnen mein sicher weil Fußball kann. Oft Ding schnell Herz neben dem rund. Oma sie etwas laut leise Leben.\nGefährlich sieben bald ob andere Küche. Vater zu schlagen.', 'Gibt Polizei schlagen deshalb. Luft das weiter Katze. Ja Leben seit stellen kalt erklären.\nApfel Onkel vom Hase sie scheinen.'] ['Glauben auf bald gut gab. Den stark schicken. Hoch werden Klasse Glück bringen Wald Stelle Gesicht.', 'Zu kochen damit Bild Brief Sonntag.\nKam besser ja so turnen. Wollen Fisch fahren. Wiese Geschichte jung mit fünf.', 'Dann plötzlich damit. Halten schauen schreien richtig Fahrrad Tür fest. Gehören gesund helfen langsam Name dein als.', 'Lehrerin wenn nächste anfangen nennen leben gelb wollen. Rechnen rot legen wohl langsam gerade Vater.\nNichts schreien traurig stark. Wirklich erst gerade sieht Fisch vielleicht.', 'Zeit ins was Essen jung halten. Rad sein stark ich.\nWarum man suchen Zug Schuh Sohn.\nIch Himmel Abend dem. Uns schon Bett fertig tun durch wissen. Sie uns Monate schön.'] ['Spiel möglich fressen. Klein sechs Hunger. Baden früh öffnen fliegen schenken schreien wie.\nLiegen hier um Flasche dafür Zug Tag. Nass sechs schicken haben wenig.', 'Mögen kann glücklich Affe.\nSieht einigen mich ins wo. Mal beide Papa Nacht. Oma mein hier jung Geld allein springen.\nMaus Minutenmir zusammen einmal später. Unter singen die rot.', 'Müde fertig Schwester vielleicht. Wohnung dort werfen wichtig. Wir fliegen Wald spielen noch bleiben.\nAlle Flasche Sommer Hilfe sprechen offen Himmel.', 'Mutter grün aber einmal.\nKönnen gerade unser wohl andere hinein darauf. Hören denken der Vogel Licht.\nWas weiter Schuh schön. Seit Loch treffen.', 'Noch tief los schwarz weiß dazu Spiel. Mein traurig Gott Tier.\nJa Haare kennen Uhr. Hart unser Opa dein Wetter ein darauf.']
>>> Faker.seed(0) >>> for _ in range(5): ... fake.texts(nb_texts=5, max_nb_chars=50) ... ['Sohn in Frau Licht hängen Stadt.', 'Sofort nämlich Flasche weiter.', 'Papa erklären Minute kann los bei wenn wenig.', 'Nun tun ging.', 'Kein Bett Geschichte letzte wieder böse Milch.'] ['Nun reiten Land. Schenken dauern deshalb Arzt.', 'Früher tief vergessen waschen neben wo Nacht.', 'Ohne unter fiel seit damit fahren Stelle ging.', 'Onkel will nicht bekommen darauf einigen turnen.', 'Eltern Zeit Schüler.'] ['Beißen gefährlich Junge Baum krank.', 'Zehn Bauer schauen unter glücklich.', 'Vor wenn Rad Himmel rennen dick schlimm.', 'Schaffen neben was verlieren davon.', 'Doch fallen kein schwer schaffen vor.'] ['Dort beide schreiben.', 'Baden treffen Zeitung ihr mich wünschen zu.', 'Als so zu schauen nun. Danach Rad von Fußball zu.', 'Stunde dafür fragen reich tot Platz dafür.', 'Gerade Haus Mädchen vergessen Vater Wort nimmt.'] ['Dem fröhlich gleich.', 'Hand zusammen das dafür seit.', 'Hunger gewinnen ihr Brief weit.', 'Selbst waschen wer offen her ziehen.', 'Braun mit gab.']
>>> Faker.seed(0) >>> for _ in range(5): ... fake.texts(nb_texts=5, max_nb_chars=50, ext_word_list=['abc', 'def', 'ghi', 'jkl']) ... ['Jkl def def ghi def jkl. Jkl def jkl abc abc.', 'Jkl def ghi jkl ghi def abc def.', 'Ghi def jkl ghi. Ghi jkl def.', 'Def abc def ghi jkl abc ghi. Ghi jkl ghi jkl.', 'Ghi ghi def. Ghi abc abc abc. Jkl jkl ghi def.'] ['Def ghi ghi jkl def def abc.', 'Abc abc ghi abc. Ghi jkl ghi abc abc abc jkl.', 'Abc jkl ghi. Abc jkl jkl abc def abc def.', 'Abc jkl abc def ghi jkl jkl abc.', 'Abc jkl ghi abc ghi. Jkl jkl ghi def ghi abc ghi.'] ['Ghi ghi jkl jkl abc. Def def ghi abc abc.', 'Def ghi def. Abc abc ghi.', 'Abc jkl jkl def ghi jkl jkl. Jkl def ghi def.', 'Abc ghi jkl def jkl. Def jkl ghi abc.', 'Def abc abc ghi. Def def ghi jkl jkl jkl ghi.'] ['Abc def def. Ghi def ghi abc abc jkl.', 'Def jkl ghi. Def def def abc jkl.', 'Ghi jkl jkl ghi def jkl. Abc abc ghi abc.', 'Jkl ghi abc abc abc jkl ghi. Def def abc jkl.', 'Def def ghi jkl. Ghi abc def def jkl.'] ['Jkl def jkl def def def. Ghi jkl abc ghi ghi.', 'Def ghi def jkl ghi jkl abc abc.', 'Jkl ghi jkl ghi ghi ghi jkl.', 'Ghi abc jkl abc jkl ghi. Ghi def abc jkl jkl.', 'Def jkl abc abc def. Jkl ghi abc ghi jkl def abc.']
- word(part_of_speech: str | None = None, ext_word_list: Sequence[str] | None = None) str ¶
Generate a word.
This method uses
words()
under the hood with thenb
argument set to1
to generate the result.- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.word() ... 'verlieren' 'Himmel' 'Sonntag' 'weg' 'ist'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.word(ext_word_list=['abc', 'def', 'ghi', 'jkl']) ... 'jkl' 'jkl' 'abc' 'ghi' 'jkl'
- words(nb: int = 3, ext_word_list: List[str] | None = None, part_of_speech: str | None = None, unique: bool = False) List[str] ¶
Generate a tuple of words.
The
nb
argument controls the number of words in the resulting list, and ifext_word_list
is provided, words from that list will be used instead of those from the locale provider’s built-in word list.if
word_list
is not provided, the method will use a default value of None, which will result in the method calling theget_words_list
method to get the word list. Ifword_list
is provided, the method will use the provided list.If
unique
isTrue
, this method will return a list containing unique words. Under the hood,random_sample()
will be used for sampling without replacement. Ifunique
isFalse
,random_choices()
is used instead, and the list returned may contain duplicates.- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.words() ... ['unter', 'Sohn', 'in'] ['Frau', 'Licht', 'hängen'] ['Stadt', 'gegen', 'Land'] ['Name', 'weit', 'lernen'] ['fährt', 'sofort', 'nämlich']
>>> Faker.seed(0) >>> for _ in range(5): ... fake.words(nb=5) ... ['unter', 'Sohn', 'in', 'Frau', 'Licht'] ['hängen', 'Stadt', 'gegen', 'Land', 'Name'] ['weit', 'lernen', 'fährt', 'sofort', 'nämlich'] ['Flasche', 'weiter', 'zum', 'Teller', 'Weihnachten'] ['Geld', 'seit', 'weg', 'Schiff', 'Küche']
>>> Faker.seed(0) >>> for _ in range(5): ... fake.words(nb=5, ext_word_list=['abc', 'def', 'ghi', 'jkl']) ... ['jkl', 'jkl', 'def', 'def', 'ghi'] ['def', 'jkl', 'def', 'def', 'ghi'] ['jkl', 'ghi', 'def', 'jkl', 'ghi'] ['def', 'jkl', 'jkl', 'jkl', 'jkl'] ['def', 'ghi', 'jkl', 'ghi', 'def']
>>> Faker.seed(0) >>> for _ in range(5): ... fake.words(nb=4, ext_word_list=['abc', 'def', 'ghi', 'jkl'], unique=True) ... ['jkl', 'def', 'abc', 'ghi'] ['jkl', 'def', 'ghi', 'abc'] ['ghi', 'jkl', 'abc', 'def'] ['ghi', 'abc', 'jkl', 'def'] ['def', 'jkl', 'abc', 'ghi']
faker.providers.person
¶
- class faker.providers.person.de_AT.Provider(generator: Any)¶
Bases:
Provider
- first_name() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.first_name() ... 'Lena' 'Madeleine' 'Damian' 'Anna-Lena' 'Siena'
- first_name_female() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.first_name_female() ... 'Mara' 'Maya' 'Angelika' 'Karina' 'Raffaela'
- first_name_male() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.first_name_male() ... 'Simon' 'Johannes' 'Patrik' 'Timon' 'Justin'
- first_name_nonbinary() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.first_name_nonbinary() ... 'Lena' 'Madeleine' 'Damian' 'Anna-Lena' 'Siena'
- language_name() str ¶
Generate a random i18n language name (e.g. English).
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.language_name() ... 'Luba-Katanga' 'Malay' 'Aymara' 'Interlingue' 'Quechua'
- last_name() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.last_name() ... 'Vogel' 'Kraft' 'Simon' 'Wittmann' 'Ladner'
- last_name_female() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.last_name_female() ... 'Vogel' 'Kraft' 'Simon' 'Wittmann' 'Ladner'
- last_name_male() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.last_name_male() ... 'Vogel' 'Kraft' 'Simon' 'Wittmann' 'Ladner'
- last_name_nonbinary() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.last_name_nonbinary() ... 'Vogel' 'Kraft' 'Simon' 'Wittmann' 'Ladner'
- name() str ¶
- Example:
‘John Doe’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.name() ... 'Maya Bichler' 'Levi Meindl-Kucera' 'Lennard Klausner-Praxmarer' 'Leopold Fink' 'Christoph Sigl-Dünser'
- name_female() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.name_female() ... 'Maya Bichler' 'Raffaela Meindl' 'Lena Martin' 'Tanja Wolf' 'Philippa Fink'
- name_male() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.name_male() ... 'Patrik Wittmann' 'Andrej Hemetsberger' 'Leo Kucera-Steinböck' 'Lennard Klausner' 'Tobias Zeller-Hafner'
- name_nonbinary() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.name_nonbinary() ... 'Maya Bichler' 'Levi Meindl-Kucera' 'Lennard Klausner-Praxmarer' 'Leopold Fink' 'Christoph Sigl-Dünser'
- prefix() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.prefix() ... 'Dipl.-Ing.' 'Dipl.-Ing.' 'Dr.' 'Ing.' 'Prof.'
- prefix_female() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.prefix_female() ... 'Dipl.-Ing.' 'Dipl.-Ing.' 'Frau' 'Ing.' 'Prof.'
- prefix_male() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.prefix_male() ... 'Dipl.-Ing.' 'Dipl.-Ing.' 'Herr' 'Ing.' 'Prof.'
- prefix_nonbinary() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.prefix_nonbinary() ... 'Dipl.-Ing.' 'Dipl.-Ing.' 'Dr.' 'Ing.' 'Prof.'
- suffix() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.suffix() ... '' '' '' '' ''
- suffix_female() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.suffix_female() ... '' '' '' '' ''
faker.providers.ssn
¶
- class faker.providers.ssn.de_AT.Provider(generator: Any)¶
Bases:
Provider
A Faker provider for the Austrian VAT IDs
- ssn() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ssn() ... '604-87-6475' '824-21-9489' '411-57-8156' '938-77-8408' '160-97-5351'
- vat_id() str ¶
http://ec.europa.eu/taxation_customs/vies/faq.html#item_11 :return: a random Austrian VAT ID
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.vat_id() ... 'ATU60487647' 'ATU93824219' 'ATU89241157' 'ATU56593877' 'ATU08016097'