repo stringlengths 7 55 | path stringlengths 4 223 | func_name stringlengths 1 134 | original_string stringlengths 75 104k | language stringclasses 1
value | code stringlengths 75 104k | code_tokens listlengths 19 28.4k | docstring stringlengths 1 46.9k | docstring_tokens listlengths 1 1.97k | sha stringlengths 40 40 | url stringlengths 87 315 | partition stringclasses 1
value |
|---|---|---|---|---|---|---|---|---|---|---|---|
joke2k/faker | faker/providers/address/__init__.py | Provider.street_name | def street_name(self):
"""
:example 'Crist Parks'
"""
pattern = self.random_element(self.street_name_formats)
return self.generator.parse(pattern) | python | def street_name(self):
"""
:example 'Crist Parks'
"""
pattern = self.random_element(self.street_name_formats)
return self.generator.parse(pattern) | [
"def",
"street_name",
"(",
"self",
")",
":",
"pattern",
"=",
"self",
".",
"random_element",
"(",
"self",
".",
"street_name_formats",
")",
"return",
"self",
".",
"generator",
".",
"parse",
"(",
"pattern",
")"
] | :example 'Crist Parks' | [
":",
"example",
"Crist",
"Parks"
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/address/__init__.py#L52-L57 | train |
joke2k/faker | faker/providers/address/__init__.py | Provider.street_address | def street_address(self):
"""
:example '791 Crist Parks'
"""
pattern = self.random_element(self.street_address_formats)
return self.generator.parse(pattern) | python | def street_address(self):
"""
:example '791 Crist Parks'
"""
pattern = self.random_element(self.street_address_formats)
return self.generator.parse(pattern) | [
"def",
"street_address",
"(",
"self",
")",
":",
"pattern",
"=",
"self",
".",
"random_element",
"(",
"self",
".",
"street_address_formats",
")",
"return",
"self",
".",
"generator",
".",
"parse",
"(",
"pattern",
")"
] | :example '791 Crist Parks' | [
":",
"example",
"791",
"Crist",
"Parks"
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/address/__init__.py#L59-L64 | train |
joke2k/faker | faker/providers/address/__init__.py | Provider.address | def address(self):
"""
:example '791 Crist Parks, Sashabury, IL 86039-9874'
"""
pattern = self.random_element(self.address_formats)
return self.generator.parse(pattern) | python | def address(self):
"""
:example '791 Crist Parks, Sashabury, IL 86039-9874'
"""
pattern = self.random_element(self.address_formats)
return self.generator.parse(pattern) | [
"def",
"address",
"(",
"self",
")",
":",
"pattern",
"=",
"self",
".",
"random_element",
"(",
"self",
".",
"address_formats",
")",
"return",
"self",
".",
"generator",
".",
"parse",
"(",
"pattern",
")"
] | :example '791 Crist Parks, Sashabury, IL 86039-9874' | [
":",
"example",
"791",
"Crist",
"Parks",
"Sashabury",
"IL",
"86039",
"-",
"9874"
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/address/__init__.py#L72-L77 | train |
joke2k/faker | faker/utils/text.py | slugify | def slugify(value, allow_dots=False, allow_unicode=False):
"""
Converts to lowercase, removes non-word characters (alphanumerics and
underscores) and converts spaces to hyphens. Also strips leading and
trailing whitespace. Modified to optionally allow dots.
Adapted from Django 1.9
"""
if al... | python | def slugify(value, allow_dots=False, allow_unicode=False):
"""
Converts to lowercase, removes non-word characters (alphanumerics and
underscores) and converts spaces to hyphens. Also strips leading and
trailing whitespace. Modified to optionally allow dots.
Adapted from Django 1.9
"""
if al... | [
"def",
"slugify",
"(",
"value",
",",
"allow_dots",
"=",
"False",
",",
"allow_unicode",
"=",
"False",
")",
":",
"if",
"allow_dots",
":",
"pattern",
"=",
"_re_pattern_allow_dots",
"else",
":",
"pattern",
"=",
"_re_pattern",
"value",
"=",
"six",
".",
"text_type... | Converts to lowercase, removes non-word characters (alphanumerics and
underscores) and converts spaces to hyphens. Also strips leading and
trailing whitespace. Modified to optionally allow dots.
Adapted from Django 1.9 | [
"Converts",
"to",
"lowercase",
"removes",
"non",
"-",
"word",
"characters",
"(",
"alphanumerics",
"and",
"underscores",
")",
"and",
"converts",
"spaces",
"to",
"hyphens",
".",
"Also",
"strips",
"leading",
"and",
"trailing",
"whitespace",
".",
"Modified",
"to",
... | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/utils/text.py#L14-L35 | train |
joke2k/faker | faker/providers/address/ja_JP/__init__.py | Provider.ban | def ban(self):
"""
:example '3番'
"""
return "%d番" % self.generator.random.randint(1, 27) | python | def ban(self):
"""
:example '3番'
"""
return "%d番" % self.generator.random.randint(1, 27) | [
"def",
"ban",
"(",
"self",
")",
":",
"return",
"\"%d番\" %",
"s",
"lf.g",
"e",
"nerator.r",
"a",
"ndom.r",
"a",
"ndint(1",
",",
" ",
"2",
")",
""
] | :example '3番' | [
":",
"example",
"3番"
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/address/ja_JP/__init__.py#L332-L336 | train |
joke2k/faker | faker/providers/address/ja_JP/__init__.py | Provider.postcode | def postcode(self):
"""
:example '101-1212'
"""
return "%03d-%04d" % (self.generator.random.randint(0, 999),
self.generator.random.randint(0, 9999)) | python | def postcode(self):
"""
:example '101-1212'
"""
return "%03d-%04d" % (self.generator.random.randint(0, 999),
self.generator.random.randint(0, 9999)) | [
"def",
"postcode",
"(",
"self",
")",
":",
"return",
"\"%03d-%04d\"",
"%",
"(",
"self",
".",
"generator",
".",
"random",
".",
"randint",
"(",
"0",
",",
"999",
")",
",",
"self",
".",
"generator",
".",
"random",
".",
"randint",
"(",
"0",
",",
"9999",
... | :example '101-1212' | [
":",
"example",
"101",
"-",
"1212"
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/address/ja_JP/__init__.py#L350-L355 | train |
joke2k/faker | faker/providers/address/en_CA/__init__.py | Provider.postcode | def postcode(self):
"""
Replaces all question mark ('?') occurrences with a random letter
from postal_code_formats then passes result to
numerify to insert numbers
"""
temp = re.sub(r'\?',
lambda x: self.postal_code_letter(),
se... | python | def postcode(self):
"""
Replaces all question mark ('?') occurrences with a random letter
from postal_code_formats then passes result to
numerify to insert numbers
"""
temp = re.sub(r'\?',
lambda x: self.postal_code_letter(),
se... | [
"def",
"postcode",
"(",
"self",
")",
":",
"temp",
"=",
"re",
".",
"sub",
"(",
"r'\\?'",
",",
"lambda",
"x",
":",
"self",
".",
"postal_code_letter",
"(",
")",
",",
"self",
".",
"random_element",
"(",
"self",
".",
"postal_code_formats",
")",
")",
"return... | Replaces all question mark ('?') occurrences with a random letter
from postal_code_formats then passes result to
numerify to insert numbers | [
"Replaces",
"all",
"question",
"mark",
"(",
"?",
")",
"occurrences",
"with",
"a",
"random",
"letter",
"from",
"postal_code_formats",
"then",
"passes",
"result",
"to",
"numerify",
"to",
"insert",
"numbers"
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/address/en_CA/__init__.py#L319-L328 | train |
joke2k/faker | faker/providers/company/pl_PL/__init__.py | regon_checksum | def regon_checksum(digits):
"""
Calculates and returns a control digit for given list of digits basing on REGON standard.
"""
weights_for_check_digit = [8, 9, 2, 3, 4, 5, 6, 7]
check_digit = 0
for i in range(0, 8):
check_digit += weights_for_check_digit[i] * digits[i]
check_digit %... | python | def regon_checksum(digits):
"""
Calculates and returns a control digit for given list of digits basing on REGON standard.
"""
weights_for_check_digit = [8, 9, 2, 3, 4, 5, 6, 7]
check_digit = 0
for i in range(0, 8):
check_digit += weights_for_check_digit[i] * digits[i]
check_digit %... | [
"def",
"regon_checksum",
"(",
"digits",
")",
":",
"weights_for_check_digit",
"=",
"[",
"8",
",",
"9",
",",
"2",
",",
"3",
",",
"4",
",",
"5",
",",
"6",
",",
"7",
"]",
"check_digit",
"=",
"0",
"for",
"i",
"in",
"range",
"(",
"0",
",",
"8",
")",
... | Calculates and returns a control digit for given list of digits basing on REGON standard. | [
"Calculates",
"and",
"returns",
"a",
"control",
"digit",
"for",
"given",
"list",
"of",
"digits",
"basing",
"on",
"REGON",
"standard",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/company/pl_PL/__init__.py#L6-L21 | train |
joke2k/faker | faker/providers/company/pl_PL/__init__.py | local_regon_checksum | def local_regon_checksum(digits):
"""
Calculates and returns a control digit for given list of digits basing on local REGON standard.
"""
weights_for_check_digit = [2, 4, 8, 5, 0, 9, 7, 3, 6, 1, 2, 4, 8]
check_digit = 0
for i in range(0, 13):
check_digit += weights_for_check_digit[i] * ... | python | def local_regon_checksum(digits):
"""
Calculates and returns a control digit for given list of digits basing on local REGON standard.
"""
weights_for_check_digit = [2, 4, 8, 5, 0, 9, 7, 3, 6, 1, 2, 4, 8]
check_digit = 0
for i in range(0, 13):
check_digit += weights_for_check_digit[i] * ... | [
"def",
"local_regon_checksum",
"(",
"digits",
")",
":",
"weights_for_check_digit",
"=",
"[",
"2",
",",
"4",
",",
"8",
",",
"5",
",",
"0",
",",
"9",
",",
"7",
",",
"3",
",",
"6",
",",
"1",
",",
"2",
",",
"4",
",",
"8",
"]",
"check_digit",
"=",
... | Calculates and returns a control digit for given list of digits basing on local REGON standard. | [
"Calculates",
"and",
"returns",
"a",
"control",
"digit",
"for",
"given",
"list",
"of",
"digits",
"basing",
"on",
"local",
"REGON",
"standard",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/company/pl_PL/__init__.py#L24-L39 | train |
joke2k/faker | faker/providers/company/pl_PL/__init__.py | company_vat_checksum | def company_vat_checksum(digits):
"""
Calculates and returns a control digit for given list of digits basing on NIP standard.
"""
weights_for_check_digit = [6, 5, 7, 2, 3, 4, 5, 6, 7]
check_digit = 0
for i in range(0, 9):
check_digit += weights_for_check_digit[i] * digits[i]
check_... | python | def company_vat_checksum(digits):
"""
Calculates and returns a control digit for given list of digits basing on NIP standard.
"""
weights_for_check_digit = [6, 5, 7, 2, 3, 4, 5, 6, 7]
check_digit = 0
for i in range(0, 9):
check_digit += weights_for_check_digit[i] * digits[i]
check_... | [
"def",
"company_vat_checksum",
"(",
"digits",
")",
":",
"weights_for_check_digit",
"=",
"[",
"6",
",",
"5",
",",
"7",
",",
"2",
",",
"3",
",",
"4",
",",
"5",
",",
"6",
",",
"7",
"]",
"check_digit",
"=",
"0",
"for",
"i",
"in",
"range",
"(",
"0",
... | Calculates and returns a control digit for given list of digits basing on NIP standard. | [
"Calculates",
"and",
"returns",
"a",
"control",
"digit",
"for",
"given",
"list",
"of",
"digits",
"basing",
"on",
"NIP",
"standard",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/company/pl_PL/__init__.py#L42-L54 | train |
joke2k/faker | faker/providers/company/pl_PL/__init__.py | Provider.regon | def regon(self):
"""
Returns 9 character Polish National Business Registry Number,
Polish: Rejestr Gospodarki Narodowej - REGON.
https://pl.wikipedia.org/wiki/REGON
"""
voivodeship_number = self.random_int(0, 49) * 2 + 1
regon_digits = [int(voivodeship_number / 1... | python | def regon(self):
"""
Returns 9 character Polish National Business Registry Number,
Polish: Rejestr Gospodarki Narodowej - REGON.
https://pl.wikipedia.org/wiki/REGON
"""
voivodeship_number = self.random_int(0, 49) * 2 + 1
regon_digits = [int(voivodeship_number / 1... | [
"def",
"regon",
"(",
"self",
")",
":",
"voivodeship_number",
"=",
"self",
".",
"random_int",
"(",
"0",
",",
"49",
")",
"*",
"2",
"+",
"1",
"regon_digits",
"=",
"[",
"int",
"(",
"voivodeship_number",
"/",
"10",
")",
",",
"voivodeship_number",
"%",
"10",... | Returns 9 character Polish National Business Registry Number,
Polish: Rejestr Gospodarki Narodowej - REGON.
https://pl.wikipedia.org/wiki/REGON | [
"Returns",
"9",
"character",
"Polish",
"National",
"Business",
"Registry",
"Number",
"Polish",
":",
"Rejestr",
"Gospodarki",
"Narodowej",
"-",
"REGON",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/company/pl_PL/__init__.py#L77-L92 | train |
joke2k/faker | faker/providers/company/pl_PL/__init__.py | Provider.local_regon | def local_regon(self):
"""
Returns 14 character Polish National Business Registry Number,
local entity number.
https://pl.wikipedia.org/wiki/REGON
"""
regon_digits = [int(digit) for digit in list(self.regon())]
for _ in range(4):
regon_digits.append(... | python | def local_regon(self):
"""
Returns 14 character Polish National Business Registry Number,
local entity number.
https://pl.wikipedia.org/wiki/REGON
"""
regon_digits = [int(digit) for digit in list(self.regon())]
for _ in range(4):
regon_digits.append(... | [
"def",
"local_regon",
"(",
"self",
")",
":",
"regon_digits",
"=",
"[",
"int",
"(",
"digit",
")",
"for",
"digit",
"in",
"list",
"(",
"self",
".",
"regon",
"(",
")",
")",
"]",
"for",
"_",
"in",
"range",
"(",
"4",
")",
":",
"regon_digits",
".",
"app... | Returns 14 character Polish National Business Registry Number,
local entity number.
https://pl.wikipedia.org/wiki/REGON | [
"Returns",
"14",
"character",
"Polish",
"National",
"Business",
"Registry",
"Number",
"local",
"entity",
"number",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/company/pl_PL/__init__.py#L94-L108 | train |
joke2k/faker | faker/providers/company/pl_PL/__init__.py | Provider.company_vat | def company_vat(self):
"""
Returns 10 character tax identification number,
Polish: Numer identyfikacji podatkowej.
https://pl.wikipedia.org/wiki/NIP
"""
vat_digits = []
for _ in range(3):
vat_digits.append(self.random_digit_not_null())
for _... | python | def company_vat(self):
"""
Returns 10 character tax identification number,
Polish: Numer identyfikacji podatkowej.
https://pl.wikipedia.org/wiki/NIP
"""
vat_digits = []
for _ in range(3):
vat_digits.append(self.random_digit_not_null())
for _... | [
"def",
"company_vat",
"(",
"self",
")",
":",
"vat_digits",
"=",
"[",
"]",
"for",
"_",
"in",
"range",
"(",
"3",
")",
":",
"vat_digits",
".",
"append",
"(",
"self",
".",
"random_digit_not_null",
"(",
")",
")",
"for",
"_",
"in",
"range",
"(",
"6",
")"... | Returns 10 character tax identification number,
Polish: Numer identyfikacji podatkowej.
https://pl.wikipedia.org/wiki/NIP | [
"Returns",
"10",
"character",
"tax",
"identification",
"number",
"Polish",
":",
"Numer",
"identyfikacji",
"podatkowej",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/company/pl_PL/__init__.py#L110-L134 | train |
joke2k/faker | faker/providers/ssn/pt_BR/__init__.py | checksum | def checksum(digits):
"""
Returns the checksum of CPF digits.
References to the algorithm:
https://pt.wikipedia.org/wiki/Cadastro_de_pessoas_f%C3%ADsicas#Algoritmo
https://metacpan.org/source/MAMAWE/Algorithm-CheckDigits-v1.3.0/lib/Algorithm/CheckDigits/M11_004.pm
"""
s = 0
p = len(digit... | python | def checksum(digits):
"""
Returns the checksum of CPF digits.
References to the algorithm:
https://pt.wikipedia.org/wiki/Cadastro_de_pessoas_f%C3%ADsicas#Algoritmo
https://metacpan.org/source/MAMAWE/Algorithm-CheckDigits-v1.3.0/lib/Algorithm/CheckDigits/M11_004.pm
"""
s = 0
p = len(digit... | [
"def",
"checksum",
"(",
"digits",
")",
":",
"s",
"=",
"0",
"p",
"=",
"len",
"(",
"digits",
")",
"+",
"1",
"for",
"i",
"in",
"range",
"(",
"0",
",",
"len",
"(",
"digits",
")",
")",
":",
"s",
"+=",
"digits",
"[",
"i",
"]",
"*",
"p",
"p",
"-... | Returns the checksum of CPF digits.
References to the algorithm:
https://pt.wikipedia.org/wiki/Cadastro_de_pessoas_f%C3%ADsicas#Algoritmo
https://metacpan.org/source/MAMAWE/Algorithm-CheckDigits-v1.3.0/lib/Algorithm/CheckDigits/M11_004.pm | [
"Returns",
"the",
"checksum",
"of",
"CPF",
"digits",
".",
"References",
"to",
"the",
"algorithm",
":",
"https",
":",
"//",
"pt",
".",
"wikipedia",
".",
"org",
"/",
"wiki",
"/",
"Cadastro_de_pessoas_f%C3%ADsicas#Algoritmo",
"https",
":",
"//",
"metacpan",
".",
... | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/ssn/pt_BR/__init__.py#L8-L25 | train |
joke2k/faker | faker/providers/ssn/pt_BR/__init__.py | Provider.rg | def rg(self):
"""
Brazilian RG, return plain numbers.
Check: https://www.ngmatematica.com/2014/02/como-determinar-o-digito-verificador-do.html
"""
digits = self.generator.random.sample(range(0, 9), 8)
checksum = sum(i * digits[i - 2] for i in range(2, 10))
last_... | python | def rg(self):
"""
Brazilian RG, return plain numbers.
Check: https://www.ngmatematica.com/2014/02/como-determinar-o-digito-verificador-do.html
"""
digits = self.generator.random.sample(range(0, 9), 8)
checksum = sum(i * digits[i - 2] for i in range(2, 10))
last_... | [
"def",
"rg",
"(",
"self",
")",
":",
"digits",
"=",
"self",
".",
"generator",
".",
"random",
".",
"sample",
"(",
"range",
"(",
"0",
",",
"9",
")",
",",
"8",
")",
"checksum",
"=",
"sum",
"(",
"i",
"*",
"digits",
"[",
"i",
"-",
"2",
"]",
"for",
... | Brazilian RG, return plain numbers.
Check: https://www.ngmatematica.com/2014/02/como-determinar-o-digito-verificador-do.html | [
"Brazilian",
"RG",
"return",
"plain",
"numbers",
".",
"Check",
":",
"https",
":",
"//",
"www",
".",
"ngmatematica",
".",
"com",
"/",
"2014",
"/",
"02",
"/",
"como",
"-",
"determinar",
"-",
"o",
"-",
"digito",
"-",
"verificador",
"-",
"do",
".",
"html... | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/ssn/pt_BR/__init__.py#L49-L66 | train |
joke2k/faker | faker/providers/isbn/__init__.py | Provider._body | def _body(self):
""" Generate the information required to create an ISBN-10 or
ISBN-13.
"""
ean = self.random_element(RULES.keys())
reg_group = self.random_element(RULES[ean].keys())
# Given the chosen ean/group, decide how long the
# registrant/publication str... | python | def _body(self):
""" Generate the information required to create an ISBN-10 or
ISBN-13.
"""
ean = self.random_element(RULES.keys())
reg_group = self.random_element(RULES[ean].keys())
# Given the chosen ean/group, decide how long the
# registrant/publication str... | [
"def",
"_body",
"(",
"self",
")",
":",
"ean",
"=",
"self",
".",
"random_element",
"(",
"RULES",
".",
"keys",
"(",
")",
")",
"reg_group",
"=",
"self",
".",
"random_element",
"(",
"RULES",
"[",
"ean",
"]",
".",
"keys",
"(",
")",
")",
"# Given the chose... | Generate the information required to create an ISBN-10 or
ISBN-13. | [
"Generate",
"the",
"information",
"required",
"to",
"create",
"an",
"ISBN",
"-",
"10",
"or",
"ISBN",
"-",
"13",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/isbn/__init__.py#L23-L42 | train |
joke2k/faker | faker/providers/isbn/__init__.py | Provider._registrant_publication | def _registrant_publication(reg_pub, rules):
""" Separate the registration from the publication in a given
string.
:param reg_pub: A string of digits representing a registration
and publication.
:param rules: A list of RegistrantRules which designate where
to sepa... | python | def _registrant_publication(reg_pub, rules):
""" Separate the registration from the publication in a given
string.
:param reg_pub: A string of digits representing a registration
and publication.
:param rules: A list of RegistrantRules which designate where
to sepa... | [
"def",
"_registrant_publication",
"(",
"reg_pub",
",",
"rules",
")",
":",
"for",
"rule",
"in",
"rules",
":",
"if",
"rule",
".",
"min",
"<=",
"reg_pub",
"<=",
"rule",
".",
"max",
":",
"reg_len",
"=",
"rule",
".",
"registrant_length",
"break",
"else",
":",... | Separate the registration from the publication in a given
string.
:param reg_pub: A string of digits representing a registration
and publication.
:param rules: A list of RegistrantRules which designate where
to separate the values in the string.
:returns: A (regis... | [
"Separate",
"the",
"registration",
"from",
"the",
"publication",
"in",
"a",
"given",
"string",
".",
":",
"param",
"reg_pub",
":",
"A",
"string",
"of",
"digits",
"representing",
"a",
"registration",
"and",
"publication",
".",
":",
"param",
"rules",
":",
"A",
... | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/isbn/__init__.py#L45-L62 | train |
joke2k/faker | faker/providers/ssn/uk_UA/__init__.py | Provider.ssn | def ssn(self):
"""
Ukrainian "Реєстраційний номер облікової картки платника податків"
also known as "Ідентифікаційний номер фізичної особи".
"""
digits = []
# Number of days between 1899-12-31 and a birth date
for digit in str((self.generator.date_object() -
... | python | def ssn(self):
"""
Ukrainian "Реєстраційний номер облікової картки платника податків"
also known as "Ідентифікаційний номер фізичної особи".
"""
digits = []
# Number of days between 1899-12-31 and a birth date
for digit in str((self.generator.date_object() -
... | [
"def",
"ssn",
"(",
"self",
")",
":",
"digits",
"=",
"[",
"]",
"# Number of days between 1899-12-31 and a birth date",
"for",
"digit",
"in",
"str",
"(",
"(",
"self",
".",
"generator",
".",
"date_object",
"(",
")",
"-",
"date",
"(",
"1899",
",",
"12",
",",
... | Ukrainian "Реєстраційний номер облікової картки платника податків"
also known as "Ідентифікаційний номер фізичної особи". | [
"Ukrainian",
"Реєстраційний",
"номер",
"облікової",
"картки",
"платника",
"податків",
"also",
"known",
"as",
"Ідентифікаційний",
"номер",
"фізичної",
"особи",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/ssn/uk_UA/__init__.py#L10-L32 | train |
joke2k/faker | faker/providers/address/en_US/__init__.py | Provider.state_abbr | def state_abbr(self, include_territories=True):
"""
:returns: A random state or territory abbreviation.
:param include_territories: If True, territories will be included.
If False, only states will be returned.
"""
if include_territories:
self.random_elem... | python | def state_abbr(self, include_territories=True):
"""
:returns: A random state or territory abbreviation.
:param include_territories: If True, territories will be included.
If False, only states will be returned.
"""
if include_territories:
self.random_elem... | [
"def",
"state_abbr",
"(",
"self",
",",
"include_territories",
"=",
"True",
")",
":",
"if",
"include_territories",
":",
"self",
".",
"random_element",
"(",
"self",
".",
"states_and_territories_abbr",
")",
"return",
"self",
".",
"random_element",
"(",
"self",
".",... | :returns: A random state or territory abbreviation.
:param include_territories: If True, territories will be included.
If False, only states will be returned. | [
":",
"returns",
":",
"A",
"random",
"state",
"or",
"territory",
"abbreviation",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/address/en_US/__init__.py#L358-L367 | train |
joke2k/faker | faker/providers/python/__init__.py | Provider.pystr | def pystr(self, min_chars=None, max_chars=20):
"""
Generates a random string of upper and lowercase letters.
:type min_chars: int
:type max_chars: int
:return: String. Random of random length between min and max characters.
"""
if min_chars is None:
re... | python | def pystr(self, min_chars=None, max_chars=20):
"""
Generates a random string of upper and lowercase letters.
:type min_chars: int
:type max_chars: int
:return: String. Random of random length between min and max characters.
"""
if min_chars is None:
re... | [
"def",
"pystr",
"(",
"self",
",",
"min_chars",
"=",
"None",
",",
"max_chars",
"=",
"20",
")",
":",
"if",
"min_chars",
"is",
"None",
":",
"return",
"\"\"",
".",
"join",
"(",
"self",
".",
"random_letters",
"(",
"length",
"=",
"max_chars",
")",
")",
"el... | Generates a random string of upper and lowercase letters.
:type min_chars: int
:type max_chars: int
:return: String. Random of random length between min and max characters. | [
"Generates",
"a",
"random",
"string",
"of",
"upper",
"and",
"lowercase",
"letters",
".",
":",
"type",
"min_chars",
":",
"int",
":",
"type",
"max_chars",
":",
"int",
":",
"return",
":",
"String",
".",
"Random",
"of",
"random",
"length",
"between",
"min",
... | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/python/__init__.py#L17-L33 | train |
joke2k/faker | faker/providers/python/__init__.py | Provider.pydict | def pydict(self, nb_elements=10, variable_nb_elements=True, *value_types):
"""
Returns a dictionary.
:nb_elements: number of elements for dictionary
:variable_nb_elements: is use variable number of elements for dictionary
:value_types: type of dictionary values
"""
... | python | def pydict(self, nb_elements=10, variable_nb_elements=True, *value_types):
"""
Returns a dictionary.
:nb_elements: number of elements for dictionary
:variable_nb_elements: is use variable number of elements for dictionary
:value_types: type of dictionary values
"""
... | [
"def",
"pydict",
"(",
"self",
",",
"nb_elements",
"=",
"10",
",",
"variable_nb_elements",
"=",
"True",
",",
"*",
"value_types",
")",
":",
"if",
"variable_nb_elements",
":",
"nb_elements",
"=",
"self",
".",
"randomize_nb_elements",
"(",
"nb_elements",
",",
"min... | Returns a dictionary.
:nb_elements: number of elements for dictionary
:variable_nb_elements: is use variable number of elements for dictionary
:value_types: type of dictionary values | [
"Returns",
"a",
"dictionary",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/python/__init__.py#L141-L155 | train |
joke2k/faker | faker/providers/address/en_GB/__init__.py | Provider.postcode | def postcode(self):
"""
See
http://web.archive.org/web/20090930140939/http://www.govtalk.gov.uk/gdsc/html/noframes/PostCode-2-1-Release.htm
"""
postcode = ''
pattern = self.random_element(self.postcode_formats)
for placeholder in pattern:
postcode += s... | python | def postcode(self):
"""
See
http://web.archive.org/web/20090930140939/http://www.govtalk.gov.uk/gdsc/html/noframes/PostCode-2-1-Release.htm
"""
postcode = ''
pattern = self.random_element(self.postcode_formats)
for placeholder in pattern:
postcode += s... | [
"def",
"postcode",
"(",
"self",
")",
":",
"postcode",
"=",
"''",
"pattern",
"=",
"self",
".",
"random_element",
"(",
"self",
".",
"postcode_formats",
")",
"for",
"placeholder",
"in",
"pattern",
":",
"postcode",
"+=",
"self",
".",
"random_element",
"(",
"se... | See
http://web.archive.org/web/20090930140939/http://www.govtalk.gov.uk/gdsc/html/noframes/PostCode-2-1-Release.htm | [
"See",
"http",
":",
"//",
"web",
".",
"archive",
".",
"org",
"/",
"web",
"/",
"20090930140939",
"/",
"http",
":",
"//",
"www",
".",
"govtalk",
".",
"gov",
".",
"uk",
"/",
"gdsc",
"/",
"html",
"/",
"noframes",
"/",
"PostCode",
"-",
"2",
"-",
"1",
... | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/address/en_GB/__init__.py#L317-L326 | train |
joke2k/faker | faker/providers/ssn/hu_HU/__init__.py | Provider.ssn | def ssn(self, dob=None, gender=None):
"""
Generates Hungarian SSN equivalent (személyazonosító szám or, colloquially, személyi szám)
:param dob: date of birth as a "YYMMDD" string - this determines the checksum regime and is also encoded
in the személyazonosító szám.
:type d... | python | def ssn(self, dob=None, gender=None):
"""
Generates Hungarian SSN equivalent (személyazonosító szám or, colloquially, személyi szám)
:param dob: date of birth as a "YYMMDD" string - this determines the checksum regime and is also encoded
in the személyazonosító szám.
:type d... | [
"def",
"ssn",
"(",
"self",
",",
"dob",
"=",
"None",
",",
"gender",
"=",
"None",
")",
":",
"# Hungarian SSNs consist of 11 decimal characters, of the following",
"# schema:",
"#",
"# M EEHHNN SSSK",
"# ↑ ↑ ↑ ↑",
"# gender bday ser check digit",
"#",
"#",
... | Generates Hungarian SSN equivalent (személyazonosító szám or, colloquially, személyi szám)
:param dob: date of birth as a "YYMMDD" string - this determines the checksum regime and is also encoded
in the személyazonosító szám.
:type dob: str
:param gender: gender of the person - "F" ... | [
"Generates",
"Hungarian",
"SSN",
"equivalent",
"(",
"személyazonosító",
"szám",
"or",
"colloquially",
"személyi",
"szám",
")"
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/ssn/hu_HU/__init__.py#L16-L130 | train |
joke2k/faker | faker/providers/address/hy_AM/__init__.py | Provider.postcode_in_state | def postcode_in_state(self, state_abbr=None):
"""
:example '4703'
"""
if state_abbr is None:
state_abbr = self.random_element(self.states_abbr)
if state_abbr in self.states_abbr:
postcode = "%d" % (self.generator.random.randint(
... | python | def postcode_in_state(self, state_abbr=None):
"""
:example '4703'
"""
if state_abbr is None:
state_abbr = self.random_element(self.states_abbr)
if state_abbr in self.states_abbr:
postcode = "%d" % (self.generator.random.randint(
... | [
"def",
"postcode_in_state",
"(",
"self",
",",
"state_abbr",
"=",
"None",
")",
":",
"if",
"state_abbr",
"is",
"None",
":",
"state_abbr",
"=",
"self",
".",
"random_element",
"(",
"self",
".",
"states_abbr",
")",
"if",
"state_abbr",
"in",
"self",
".",
"states... | :example '4703' | [
":",
"example",
"4703"
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/address/hy_AM/__init__.py#L622-L640 | train |
joke2k/faker | faker/providers/ssn/nl_NL/__init__.py | Provider.ssn | def ssn(self):
"""
Returns a 9 digits Dutch SSN called "burgerservicenummer (BSN)".
the Dutch "burgerservicenummer (BSN)" needs to pass the "11-proef",
which is a check digit approach; this function essentially reverses
the checksum steps to create a random valid BSN (which is 9... | python | def ssn(self):
"""
Returns a 9 digits Dutch SSN called "burgerservicenummer (BSN)".
the Dutch "burgerservicenummer (BSN)" needs to pass the "11-proef",
which is a check digit approach; this function essentially reverses
the checksum steps to create a random valid BSN (which is 9... | [
"def",
"ssn",
"(",
"self",
")",
":",
"# see http://nl.wikipedia.org/wiki/Burgerservicenummer (in Dutch)",
"def",
"_checksum",
"(",
"digits",
")",
":",
"factors",
"=",
"(",
"9",
",",
"8",
",",
"7",
",",
"6",
",",
"5",
",",
"4",
",",
"3",
",",
"2",
",",
... | Returns a 9 digits Dutch SSN called "burgerservicenummer (BSN)".
the Dutch "burgerservicenummer (BSN)" needs to pass the "11-proef",
which is a check digit approach; this function essentially reverses
the checksum steps to create a random valid BSN (which is 9 digits). | [
"Returns",
"a",
"9",
"digits",
"Dutch",
"SSN",
"called",
"burgerservicenummer",
"(",
"BSN",
")",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/ssn/nl_NL/__init__.py#L9-L39 | train |
joke2k/faker | faker/providers/ssn/hr_HR/__init__.py | checksum | def checksum(digits):
"""
Calculate and return control digit for given list of digits based on
ISO7064, MOD 11,10 standard.
"""
remainder = 10
for digit in digits:
remainder = (remainder + digit) % 10
if remainder == 0:
remainder = 10
remainder = (remainder * ... | python | def checksum(digits):
"""
Calculate and return control digit for given list of digits based on
ISO7064, MOD 11,10 standard.
"""
remainder = 10
for digit in digits:
remainder = (remainder + digit) % 10
if remainder == 0:
remainder = 10
remainder = (remainder * ... | [
"def",
"checksum",
"(",
"digits",
")",
":",
"remainder",
"=",
"10",
"for",
"digit",
"in",
"digits",
":",
"remainder",
"=",
"(",
"remainder",
"+",
"digit",
")",
"%",
"10",
"if",
"remainder",
"==",
"0",
":",
"remainder",
"=",
"10",
"remainder",
"=",
"(... | Calculate and return control digit for given list of digits based on
ISO7064, MOD 11,10 standard. | [
"Calculate",
"and",
"return",
"control",
"digit",
"for",
"given",
"list",
"of",
"digits",
"based",
"on",
"ISO7064",
"MOD",
"11",
"10",
"standard",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/ssn/hr_HR/__init__.py#L7-L22 | train |
joke2k/faker | faker/providers/ssn/et_EE/__init__.py | checksum | def checksum(digits):
"""Calculate checksum of Estonian personal identity code.
Checksum is calculated with "Modulo 11" method using level I or II scale:
Level I scale: 1 2 3 4 5 6 7 8 9 1
Level II scale: 3 4 5 6 7 8 9 1 2 3
The digits of the personal code are multiplied by level I scale and summe... | python | def checksum(digits):
"""Calculate checksum of Estonian personal identity code.
Checksum is calculated with "Modulo 11" method using level I or II scale:
Level I scale: 1 2 3 4 5 6 7 8 9 1
Level II scale: 3 4 5 6 7 8 9 1 2 3
The digits of the personal code are multiplied by level I scale and summe... | [
"def",
"checksum",
"(",
"digits",
")",
":",
"sum_mod11",
"=",
"sum",
"(",
"map",
"(",
"operator",
".",
"mul",
",",
"digits",
",",
"Provider",
".",
"scale1",
")",
")",
"%",
"11",
"if",
"sum_mod11",
"<",
"10",
":",
"return",
"sum_mod11",
"sum_mod11",
"... | Calculate checksum of Estonian personal identity code.
Checksum is calculated with "Modulo 11" method using level I or II scale:
Level I scale: 1 2 3 4 5 6 7 8 9 1
Level II scale: 3 4 5 6 7 8 9 1 2 3
The digits of the personal code are multiplied by level I scale and summed;
if remainder of modulo... | [
"Calculate",
"checksum",
"of",
"Estonian",
"personal",
"identity",
"code",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/ssn/et_EE/__init__.py#L9-L28 | train |
joke2k/faker | faker/providers/ssn/et_EE/__init__.py | Provider.ssn | def ssn(self, min_age=16, max_age=90):
"""
Returns 11 character Estonian personal identity code (isikukood, IK).
Age of person is between 16 and 90 years, based on local computer date.
This function assigns random sex to person.
An Estonian Personal identification code consists ... | python | def ssn(self, min_age=16, max_age=90):
"""
Returns 11 character Estonian personal identity code (isikukood, IK).
Age of person is between 16 and 90 years, based on local computer date.
This function assigns random sex to person.
An Estonian Personal identification code consists ... | [
"def",
"ssn",
"(",
"self",
",",
"min_age",
"=",
"16",
",",
"max_age",
"=",
"90",
")",
":",
"age",
"=",
"datetime",
".",
"timedelta",
"(",
"days",
"=",
"self",
".",
"generator",
".",
"random",
".",
"randrange",
"(",
"min_age",
"*",
"365",
",",
"max_... | Returns 11 character Estonian personal identity code (isikukood, IK).
Age of person is between 16 and 90 years, based on local computer date.
This function assigns random sex to person.
An Estonian Personal identification code consists of 11 digits,
generally given without any whitespac... | [
"Returns",
"11",
"character",
"Estonian",
"personal",
"identity",
"code",
"(",
"isikukood",
"IK",
")",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/ssn/et_EE/__init__.py#L35-L64 | train |
joke2k/faker | faker/providers/geo/__init__.py | Provider.coordinate | def coordinate(self, center=None, radius=0.001):
"""
Optionally center the coord and pick a point within radius.
"""
if center is None:
return Decimal(str(self.generator.random.randint(-180000000, 180000000) / 1000000.0)).quantize(
Decimal(".000001"),
... | python | def coordinate(self, center=None, radius=0.001):
"""
Optionally center the coord and pick a point within radius.
"""
if center is None:
return Decimal(str(self.generator.random.randint(-180000000, 180000000) / 1000000.0)).quantize(
Decimal(".000001"),
... | [
"def",
"coordinate",
"(",
"self",
",",
"center",
"=",
"None",
",",
"radius",
"=",
"0.001",
")",
":",
"if",
"center",
"is",
"None",
":",
"return",
"Decimal",
"(",
"str",
"(",
"self",
".",
"generator",
".",
"random",
".",
"randint",
"(",
"-",
"18000000... | Optionally center the coord and pick a point within radius. | [
"Optionally",
"center",
"the",
"coord",
"and",
"pick",
"a",
"point",
"within",
"radius",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/geo/__init__.py#L978-L990 | train |
joke2k/faker | faker/providers/geo/__init__.py | Provider.local_latlng | def local_latlng(self, country_code='US', coords_only=False):
"""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.
"""
results = [loc for loc in self.land_coords if loc[3]... | python | def local_latlng(self, country_code='US', coords_only=False):
"""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.
"""
results = [loc for loc in self.land_coords if loc[3]... | [
"def",
"local_latlng",
"(",
"self",
",",
"country_code",
"=",
"'US'",
",",
"coords_only",
"=",
"False",
")",
":",
"results",
"=",
"[",
"loc",
"for",
"loc",
"in",
"self",
".",
"land_coords",
"if",
"loc",
"[",
"3",
"]",
"==",
"country_code",
"]",
"if",
... | 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. | [
"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",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/geo/__init__.py#L1002-L1009 | train |
joke2k/faker | faker/providers/geo/__init__.py | Provider.location_on_land | def location_on_land(self, coords_only=False):
"""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.
"""
place ... | python | def location_on_land(self, coords_only=False):
"""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.
"""
place ... | [
"def",
"location_on_land",
"(",
"self",
",",
"coords_only",
"=",
"False",
")",
":",
"place",
"=",
"self",
".",
"random_element",
"(",
"self",
".",
"land_coords",
")",
"return",
"(",
"place",
"[",
"0",
"]",
",",
"place",
"[",
"1",
"]",
")",
"if",
"coo... | 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. | [
"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",
"coord... | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/geo/__init__.py#L1011-L1017 | train |
joke2k/faker | faker/providers/ssn/pl_PL/__init__.py | checksum | def checksum(digits):
"""
Calculates and returns a control digit for given list of digits basing on PESEL standard.
"""
weights_for_check_digit = [9, 7, 3, 1, 9, 7, 3, 1, 9, 7]
check_digit = 0
for i in range(0, 10):
check_digit += weights_for_check_digit[i] * digits[i]
check_digit ... | python | def checksum(digits):
"""
Calculates and returns a control digit for given list of digits basing on PESEL standard.
"""
weights_for_check_digit = [9, 7, 3, 1, 9, 7, 3, 1, 9, 7]
check_digit = 0
for i in range(0, 10):
check_digit += weights_for_check_digit[i] * digits[i]
check_digit ... | [
"def",
"checksum",
"(",
"digits",
")",
":",
"weights_for_check_digit",
"=",
"[",
"9",
",",
"7",
",",
"3",
",",
"1",
",",
"9",
",",
"7",
",",
"3",
",",
"1",
",",
"9",
",",
"7",
"]",
"check_digit",
"=",
"0",
"for",
"i",
"in",
"range",
"(",
"0",... | Calculates and returns a control digit for given list of digits basing on PESEL standard. | [
"Calculates",
"and",
"returns",
"a",
"control",
"digit",
"for",
"given",
"list",
"of",
"digits",
"basing",
"on",
"PESEL",
"standard",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/ssn/pl_PL/__init__.py#L7-L19 | train |
joke2k/faker | faker/providers/ssn/pl_PL/__init__.py | calculate_month | def calculate_month(birth_date):
"""
Calculates and returns a month number basing on PESEL standard.
"""
year = int(birth_date.strftime('%Y'))
month = int(birth_date.strftime('%m')) + ((int(year / 100) - 14) % 5) * 20
return month | python | def calculate_month(birth_date):
"""
Calculates and returns a month number basing on PESEL standard.
"""
year = int(birth_date.strftime('%Y'))
month = int(birth_date.strftime('%m')) + ((int(year / 100) - 14) % 5) * 20
return month | [
"def",
"calculate_month",
"(",
"birth_date",
")",
":",
"year",
"=",
"int",
"(",
"birth_date",
".",
"strftime",
"(",
"'%Y'",
")",
")",
"month",
"=",
"int",
"(",
"birth_date",
".",
"strftime",
"(",
"'%m'",
")",
")",
"+",
"(",
"(",
"int",
"(",
"year",
... | Calculates and returns a month number basing on PESEL standard. | [
"Calculates",
"and",
"returns",
"a",
"month",
"number",
"basing",
"on",
"PESEL",
"standard",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/ssn/pl_PL/__init__.py#L22-L29 | train |
joke2k/faker | faker/providers/ssn/pl_PL/__init__.py | Provider.ssn | def ssn(self):
"""
Returns 11 character Polish national identity code (Public Electronic Census System,
Polish: Powszechny Elektroniczny System Ewidencji Ludności - PESEL).
It has the form YYMMDDZZZXQ, where YYMMDD is the date of birth (with century
encoded in month field), ZZZ ... | python | def ssn(self):
"""
Returns 11 character Polish national identity code (Public Electronic Census System,
Polish: Powszechny Elektroniczny System Ewidencji Ludności - PESEL).
It has the form YYMMDDZZZXQ, where YYMMDD is the date of birth (with century
encoded in month field), ZZZ ... | [
"def",
"ssn",
"(",
"self",
")",
":",
"birth_date",
"=",
"self",
".",
"generator",
".",
"date_time",
"(",
")",
"year_without_century",
"=",
"int",
"(",
"birth_date",
".",
"strftime",
"(",
"'%y'",
")",
")",
"month",
"=",
"calculate_month",
"(",
"birth_date",... | Returns 11 character Polish national identity code (Public Electronic Census System,
Polish: Powszechny Elektroniczny System Ewidencji Ludności - PESEL).
It has the form YYMMDDZZZXQ, where YYMMDD is the date of birth (with century
encoded in month field), ZZZ is the personal identification numb... | [
"Returns",
"11",
"character",
"Polish",
"national",
"identity",
"code",
"(",
"Public",
"Electronic",
"Census",
"System",
"Polish",
":",
"Powszechny",
"Elektroniczny",
"System",
"Ewidencji",
"Ludności",
"-",
"PESEL",
")",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/ssn/pl_PL/__init__.py#L34-L64 | train |
joke2k/faker | faker/providers/ssn/fr_CH/__init__.py | Provider.ssn | def ssn(self):
"""
Returns a 13 digits Swiss SSN named AHV (German) or
AVS (French and Italian)
See: http://www.bsv.admin.ch/themen/ahv/00011/02185/
"""
def _checksum(digits):
evensum = sum(digits[:-1:2])
oddsum ... | python | def ssn(self):
"""
Returns a 13 digits Swiss SSN named AHV (German) or
AVS (French and Italian)
See: http://www.bsv.admin.ch/themen/ahv/00011/02185/
"""
def _checksum(digits):
evensum = sum(digits[:-1:2])
oddsum ... | [
"def",
"ssn",
"(",
"self",
")",
":",
"def",
"_checksum",
"(",
"digits",
")",
":",
"evensum",
"=",
"sum",
"(",
"digits",
"[",
":",
"-",
"1",
":",
"2",
"]",
")",
"oddsum",
"=",
"sum",
"(",
"digits",
"[",
"1",
":",
":",
"2",
"]",
")",
"return",
... | Returns a 13 digits Swiss SSN named AHV (German) or
AVS (French and Italian)
See: http://www.bsv.admin.ch/themen/ahv/00011/02185/ | [
"Returns",
"a",
"13",
"digits",
"Swiss",
"SSN",
"named",
"AHV",
"(",
"German",
")",
"or",
"AVS",
"(",
"French",
"and",
"Italian",
")",
"See",
":",
"http",
":",
"//",
"www",
".",
"bsv",
".",
"admin",
".",
"ch",
"/",
"themen",
"/",
"ahv",
"/",
"000... | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/ssn/fr_CH/__init__.py#L10-L33 | train |
joke2k/faker | faker/providers/ssn/fr_CH/__init__.py | Provider.vat_id | def vat_id(self):
"""
:return: Swiss UID number
"""
def _checksum(digits):
code = ['8', '6', '4', '2', '3', '5', '9', '7']
remainder = 11-(sum(map(lambda x, y: int(x) * int(y), code, digits)) % 11)
if remainder == 10:
return 0
... | python | def vat_id(self):
"""
:return: Swiss UID number
"""
def _checksum(digits):
code = ['8', '6', '4', '2', '3', '5', '9', '7']
remainder = 11-(sum(map(lambda x, y: int(x) * int(y), code, digits)) % 11)
if remainder == 10:
return 0
... | [
"def",
"vat_id",
"(",
"self",
")",
":",
"def",
"_checksum",
"(",
"digits",
")",
":",
"code",
"=",
"[",
"'8'",
",",
"'6'",
",",
"'4'",
",",
"'2'",
",",
"'3'",
",",
"'5'",
",",
"'9'",
",",
"'7'",
"]",
"remainder",
"=",
"11",
"-",
"(",
"sum",
"(... | :return: Swiss UID number | [
":",
"return",
":",
"Swiss",
"UID",
"number"
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/ssn/fr_CH/__init__.py#L35-L49 | train |
joke2k/faker | faker/providers/__init__.py | BaseProvider.random_int | def random_int(self, min=0, max=9999, step=1):
"""
Returns a random integer between two values.
:param min: lower bound value (inclusive; default=0)
:param max: upper bound value (inclusive; default=9999)
:param step: range step (default=1)
:returns: random integer betwe... | python | def random_int(self, min=0, max=9999, step=1):
"""
Returns a random integer between two values.
:param min: lower bound value (inclusive; default=0)
:param max: upper bound value (inclusive; default=9999)
:param step: range step (default=1)
:returns: random integer betwe... | [
"def",
"random_int",
"(",
"self",
",",
"min",
"=",
"0",
",",
"max",
"=",
"9999",
",",
"step",
"=",
"1",
")",
":",
"return",
"self",
".",
"generator",
".",
"random",
".",
"randrange",
"(",
"min",
",",
"max",
"+",
"1",
",",
"step",
")"
] | Returns a random integer between two values.
:param min: lower bound value (inclusive; default=0)
:param max: upper bound value (inclusive; default=9999)
:param step: range step (default=1)
:returns: random integer between min and max | [
"Returns",
"a",
"random",
"integer",
"between",
"two",
"values",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/__init__.py#L96-L105 | train |
joke2k/faker | faker/providers/__init__.py | BaseProvider.random_digit_or_empty | def random_digit_or_empty(self):
"""
Returns a random digit/number
between 0 and 9 or an empty string.
"""
if self.generator.random.randint(0, 1):
return self.generator.random.randint(0, 9)
else:
return '' | python | def random_digit_or_empty(self):
"""
Returns a random digit/number
between 0 and 9 or an empty string.
"""
if self.generator.random.randint(0, 1):
return self.generator.random.randint(0, 9)
else:
return '' | [
"def",
"random_digit_or_empty",
"(",
"self",
")",
":",
"if",
"self",
".",
"generator",
".",
"random",
".",
"randint",
"(",
"0",
",",
"1",
")",
":",
"return",
"self",
".",
"generator",
".",
"random",
".",
"randint",
"(",
"0",
",",
"9",
")",
"else",
... | Returns a random digit/number
between 0 and 9 or an empty string. | [
"Returns",
"a",
"random",
"digit",
"/",
"number",
"between",
"0",
"and",
"9",
"or",
"an",
"empty",
"string",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/__init__.py#L121-L129 | train |
joke2k/faker | faker/providers/__init__.py | BaseProvider.random_digit_not_null_or_empty | def random_digit_not_null_or_empty(self):
"""
Returns a random non-zero digit/number
between 1 and 9 or and empty string.
"""
if self.generator.random.randint(0, 1):
return self.generator.random.randint(1, 9)
else:
return '' | python | def random_digit_not_null_or_empty(self):
"""
Returns a random non-zero digit/number
between 1 and 9 or and empty string.
"""
if self.generator.random.randint(0, 1):
return self.generator.random.randint(1, 9)
else:
return '' | [
"def",
"random_digit_not_null_or_empty",
"(",
"self",
")",
":",
"if",
"self",
".",
"generator",
".",
"random",
".",
"randint",
"(",
"0",
",",
"1",
")",
":",
"return",
"self",
".",
"generator",
".",
"random",
".",
"randint",
"(",
"1",
",",
"9",
")",
"... | Returns a random non-zero digit/number
between 1 and 9 or and empty string. | [
"Returns",
"a",
"random",
"non",
"-",
"zero",
"digit",
"/",
"number",
"between",
"1",
"and",
"9",
"or",
"and",
"empty",
"string",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/__init__.py#L131-L139 | train |
joke2k/faker | faker/providers/__init__.py | BaseProvider.random_number | def random_number(self, digits=None, fix_len=False):
"""
Returns a random number with 1 digit (default, when digits==None),
a random number with 0 to given number of digits, or a random number
with given number to given number of digits (when ``fix_len==True``).
:param digits: m... | python | def random_number(self, digits=None, fix_len=False):
"""
Returns a random number with 1 digit (default, when digits==None),
a random number with 0 to given number of digits, or a random number
with given number to given number of digits (when ``fix_len==True``).
:param digits: m... | [
"def",
"random_number",
"(",
"self",
",",
"digits",
"=",
"None",
",",
"fix_len",
"=",
"False",
")",
":",
"if",
"digits",
"is",
"None",
":",
"digits",
"=",
"self",
".",
"random_digit",
"(",
")",
"if",
"fix_len",
":",
"return",
"self",
".",
"generator",
... | Returns a random number with 1 digit (default, when digits==None),
a random number with 0 to given number of digits, or a random number
with given number to given number of digits (when ``fix_len==True``).
:param digits: maximum number of digits
:param fix_len: should the number have f... | [
"Returns",
"a",
"random",
"number",
"with",
"1",
"digit",
"(",
"default",
"when",
"digits",
"==",
"None",
")",
"a",
"random",
"number",
"with",
"0",
"to",
"given",
"number",
"of",
"digits",
"or",
"a",
"random",
"number",
"with",
"given",
"number",
"to",
... | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/__init__.py#L141-L158 | train |
joke2k/faker | faker/providers/__init__.py | BaseProvider.random_letter | def random_letter(self):
"""Returns a random letter (between a-z and A-Z)."""
return self.generator.random.choice(
getattr(string, 'letters', string.ascii_letters)) | python | def random_letter(self):
"""Returns a random letter (between a-z and A-Z)."""
return self.generator.random.choice(
getattr(string, 'letters', string.ascii_letters)) | [
"def",
"random_letter",
"(",
"self",
")",
":",
"return",
"self",
".",
"generator",
".",
"random",
".",
"choice",
"(",
"getattr",
"(",
"string",
",",
"'letters'",
",",
"string",
".",
"ascii_letters",
")",
")"
] | Returns a random letter (between a-z and A-Z). | [
"Returns",
"a",
"random",
"letter",
"(",
"between",
"a",
"-",
"z",
"and",
"A",
"-",
"Z",
")",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/__init__.py#L160-L163 | train |
joke2k/faker | faker/providers/__init__.py | BaseProvider.random_letters | def random_letters(self, length=16):
"""Returns a random letter (between a-z and A-Z)."""
return self.random_choices(
getattr(string, 'letters', string.ascii_letters),
length=length,
) | python | def random_letters(self, length=16):
"""Returns a random letter (between a-z and A-Z)."""
return self.random_choices(
getattr(string, 'letters', string.ascii_letters),
length=length,
) | [
"def",
"random_letters",
"(",
"self",
",",
"length",
"=",
"16",
")",
":",
"return",
"self",
".",
"random_choices",
"(",
"getattr",
"(",
"string",
",",
"'letters'",
",",
"string",
".",
"ascii_letters",
")",
",",
"length",
"=",
"length",
",",
")"
] | Returns a random letter (between a-z and A-Z). | [
"Returns",
"a",
"random",
"letter",
"(",
"between",
"a",
"-",
"z",
"and",
"A",
"-",
"Z",
")",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/__init__.py#L165-L170 | train |
joke2k/faker | faker/providers/__init__.py | BaseProvider.random_choices | def random_choices(self, elements=('a', 'b', 'c'), length=None):
"""
Returns a list of random, non-unique elements from a passed object.
If `elements` is a dictionary, the value will be used as
a weighting element. For example::
random_element({"{{variable_1}}": 0.5, "{{var... | python | def random_choices(self, elements=('a', 'b', 'c'), length=None):
"""
Returns a list of random, non-unique elements from a passed object.
If `elements` is a dictionary, the value will be used as
a weighting element. For example::
random_element({"{{variable_1}}": 0.5, "{{var... | [
"def",
"random_choices",
"(",
"self",
",",
"elements",
"=",
"(",
"'a'",
",",
"'b'",
",",
"'c'",
")",
",",
"length",
"=",
"None",
")",
":",
"return",
"self",
".",
"random_elements",
"(",
"elements",
",",
"length",
",",
"unique",
"=",
"False",
")"
] | Returns a list of random, non-unique elements from a passed object.
If `elements` is a dictionary, the value will be used as
a weighting element. For example::
random_element({"{{variable_1}}": 0.5, "{{variable_2}}": 0.2, "{{variable_3}}": 0.2, "{{variable_4}}": 0.1})
will have th... | [
"Returns",
"a",
"list",
"of",
"random",
"non",
"-",
"unique",
"elements",
"from",
"a",
"passed",
"object",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/__init__.py#L207-L223 | train |
joke2k/faker | faker/providers/__init__.py | BaseProvider.random_sample | def random_sample(self, elements=('a', 'b', 'c'), length=None):
"""
Returns a list of random unique elements for the specified length.
Multiple occurrences of the same value increase its probability to be in the output.
"""
return self.random_elements(elements, length, unique=Tru... | python | def random_sample(self, elements=('a', 'b', 'c'), length=None):
"""
Returns a list of random unique elements for the specified length.
Multiple occurrences of the same value increase its probability to be in the output.
"""
return self.random_elements(elements, length, unique=Tru... | [
"def",
"random_sample",
"(",
"self",
",",
"elements",
"=",
"(",
"'a'",
",",
"'b'",
",",
"'c'",
")",
",",
"length",
"=",
"None",
")",
":",
"return",
"self",
".",
"random_elements",
"(",
"elements",
",",
"length",
",",
"unique",
"=",
"True",
")"
] | Returns a list of random unique elements for the specified length.
Multiple occurrences of the same value increase its probability to be in the output. | [
"Returns",
"a",
"list",
"of",
"random",
"unique",
"elements",
"for",
"the",
"specified",
"length",
".",
"Multiple",
"occurrences",
"of",
"the",
"same",
"value",
"increase",
"its",
"probability",
"to",
"be",
"in",
"the",
"output",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/__init__.py#L243-L248 | train |
joke2k/faker | faker/providers/__init__.py | BaseProvider.randomize_nb_elements | def randomize_nb_elements(
self,
number=10,
le=False,
ge=False,
min=None,
max=None):
"""
Returns a random value near number.
:param number: value to which the result must be near
:param le: result must be lower or e... | python | def randomize_nb_elements(
self,
number=10,
le=False,
ge=False,
min=None,
max=None):
"""
Returns a random value near number.
:param number: value to which the result must be near
:param le: result must be lower or e... | [
"def",
"randomize_nb_elements",
"(",
"self",
",",
"number",
"=",
"10",
",",
"le",
"=",
"False",
",",
"ge",
"=",
"False",
",",
"min",
"=",
"None",
",",
"max",
"=",
"None",
")",
":",
"if",
"le",
"and",
"ge",
":",
"return",
"number",
"_min",
"=",
"1... | Returns a random value near number.
:param number: value to which the result must be near
:param le: result must be lower or equal to number
:param ge: result must be greater or equal to number
:returns: a random int near number | [
"Returns",
"a",
"random",
"value",
"near",
"number",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/__init__.py#L250-L274 | train |
joke2k/faker | faker/providers/__init__.py | BaseProvider.numerify | def numerify(self, text='###'):
"""
Replaces all placeholders in given text with randomized values,
replacing: all hash sign ('#') occurrences with a random digit
(from 0 to 9); all percentage sign ('%') occurrences with a
random non-zero digit (from 1 to 9); all exclamation mark... | python | def numerify(self, text='###'):
"""
Replaces all placeholders in given text with randomized values,
replacing: all hash sign ('#') occurrences with a random digit
(from 0 to 9); all percentage sign ('%') occurrences with a
random non-zero digit (from 1 to 9); all exclamation mark... | [
"def",
"numerify",
"(",
"self",
",",
"text",
"=",
"'###'",
")",
":",
"text",
"=",
"_re_hash",
".",
"sub",
"(",
"lambda",
"x",
":",
"str",
"(",
"self",
".",
"random_digit",
"(",
")",
")",
",",
"text",
")",
"text",
"=",
"_re_perc",
".",
"sub",
"(",... | Replaces all placeholders in given text with randomized values,
replacing: all hash sign ('#') occurrences with a random digit
(from 0 to 9); all percentage sign ('%') occurrences with a
random non-zero digit (from 1 to 9); all exclamation mark ('!')
occurrences with a random digit (from... | [
"Replaces",
"all",
"placeholders",
"in",
"given",
"text",
"with",
"randomized",
"values",
"replacing",
":",
"all",
"hash",
"sign",
"(",
"#",
")",
"occurrences",
"with",
"a",
"random",
"digit",
"(",
"from",
"0",
"to",
"9",
")",
";",
"all",
"percentage",
"... | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/__init__.py#L276-L301 | train |
joke2k/faker | faker/providers/__init__.py | BaseProvider.lexify | def lexify(self, text='????', letters=string.ascii_letters):
"""
Replaces all question mark ('?') occurrences with a random letter.
:param text: string to be parsed
:param letters: a set of letters to choose from.
:returns: string with all letter placeholders filled in
"... | python | def lexify(self, text='????', letters=string.ascii_letters):
"""
Replaces all question mark ('?') occurrences with a random letter.
:param text: string to be parsed
:param letters: a set of letters to choose from.
:returns: string with all letter placeholders filled in
"... | [
"def",
"lexify",
"(",
"self",
",",
"text",
"=",
"'????'",
",",
"letters",
"=",
"string",
".",
"ascii_letters",
")",
":",
"return",
"_re_qm",
".",
"sub",
"(",
"lambda",
"x",
":",
"self",
".",
"random_element",
"(",
"letters",
")",
",",
"text",
")"
] | Replaces all question mark ('?') occurrences with a random letter.
:param text: string to be parsed
:param letters: a set of letters to choose from.
:returns: string with all letter placeholders filled in | [
"Replaces",
"all",
"question",
"mark",
"(",
"?",
")",
"occurrences",
"with",
"a",
"random",
"letter",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/__init__.py#L303-L311 | train |
joke2k/faker | faker/providers/__init__.py | BaseProvider.bothify | def bothify(self, text='## ??', letters=string.ascii_letters):
"""
Replaces all placeholders with random numbers and letters.
:param text: string to be parsed
:returns: string with all numerical and letter placeholders filled in
"""
return self.lexify(self.numerify(text)... | python | def bothify(self, text='## ??', letters=string.ascii_letters):
"""
Replaces all placeholders with random numbers and letters.
:param text: string to be parsed
:returns: string with all numerical and letter placeholders filled in
"""
return self.lexify(self.numerify(text)... | [
"def",
"bothify",
"(",
"self",
",",
"text",
"=",
"'## ??'",
",",
"letters",
"=",
"string",
".",
"ascii_letters",
")",
":",
"return",
"self",
".",
"lexify",
"(",
"self",
".",
"numerify",
"(",
"text",
")",
",",
"letters",
"=",
"letters",
")"
] | Replaces all placeholders with random numbers and letters.
:param text: string to be parsed
:returns: string with all numerical and letter placeholders filled in | [
"Replaces",
"all",
"placeholders",
"with",
"random",
"numbers",
"and",
"letters",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/__init__.py#L313-L320 | train |
joke2k/faker | faker/providers/__init__.py | BaseProvider.hexify | def hexify(self, text='^^^^', upper=False):
"""
Replaces all circumflex ('^') occurrences with a random
hexadecimal character.
:param text: string to be parsed
:param upper: Format as uppercase hexadecimal
:returns: string with all letter placeholders filled in
"... | python | def hexify(self, text='^^^^', upper=False):
"""
Replaces all circumflex ('^') occurrences with a random
hexadecimal character.
:param text: string to be parsed
:param upper: Format as uppercase hexadecimal
:returns: string with all letter placeholders filled in
"... | [
"def",
"hexify",
"(",
"self",
",",
"text",
"=",
"'^^^^'",
",",
"upper",
"=",
"False",
")",
":",
"letters",
"=",
"string",
".",
"hexdigits",
"[",
":",
"-",
"6",
"]",
"if",
"upper",
":",
"letters",
"=",
"letters",
".",
"upper",
"(",
")",
"return",
... | Replaces all circumflex ('^') occurrences with a random
hexadecimal character.
:param text: string to be parsed
:param upper: Format as uppercase hexadecimal
:returns: string with all letter placeholders filled in | [
"Replaces",
"all",
"circumflex",
"(",
"^",
")",
"occurrences",
"with",
"a",
"random",
"hexadecimal",
"character",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/__init__.py#L322-L334 | train |
joke2k/faker | faker/providers/ssn/no_NO/__init__.py | checksum | def checksum(digits, scale):
"""
Calculate checksum of Norwegian personal identity code.
Checksum is calculated with "Module 11" method using a scale.
The digits of the personal code are multiplied by the corresponding
number in the scale and summed;
if remainder of module 11 of the sum is less... | python | def checksum(digits, scale):
"""
Calculate checksum of Norwegian personal identity code.
Checksum is calculated with "Module 11" method using a scale.
The digits of the personal code are multiplied by the corresponding
number in the scale and summed;
if remainder of module 11 of the sum is less... | [
"def",
"checksum",
"(",
"digits",
",",
"scale",
")",
":",
"chk_nbr",
"=",
"11",
"-",
"(",
"sum",
"(",
"map",
"(",
"operator",
".",
"mul",
",",
"digits",
",",
"scale",
")",
")",
"%",
"11",
")",
"if",
"chk_nbr",
"==",
"11",
":",
"return",
"0",
"r... | Calculate checksum of Norwegian personal identity code.
Checksum is calculated with "Module 11" method using a scale.
The digits of the personal code are multiplied by the corresponding
number in the scale and summed;
if remainder of module 11 of the sum is less than 10, checksum is the
remainder.
... | [
"Calculate",
"checksum",
"of",
"Norwegian",
"personal",
"identity",
"code",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/ssn/no_NO/__init__.py#L9-L25 | train |
joke2k/faker | faker/providers/ssn/no_NO/__init__.py | Provider.ssn | def ssn(self, dob=None, gender=None):
"""
Returns 11 character Norwegian personal identity code (Fødselsnummer).
A Norwegian personal identity code consists of 11 digits, without any
whitespace or other delimiters. The form is DDMMYYIIICC, where III is
a serial number separating... | python | def ssn(self, dob=None, gender=None):
"""
Returns 11 character Norwegian personal identity code (Fødselsnummer).
A Norwegian personal identity code consists of 11 digits, without any
whitespace or other delimiters. The form is DDMMYYIIICC, where III is
a serial number separating... | [
"def",
"ssn",
"(",
"self",
",",
"dob",
"=",
"None",
",",
"gender",
"=",
"None",
")",
":",
"if",
"dob",
":",
"birthday",
"=",
"datetime",
".",
"datetime",
".",
"strptime",
"(",
"dob",
",",
"'%Y%m%d'",
")",
"else",
":",
"age",
"=",
"datetime",
".",
... | Returns 11 character Norwegian personal identity code (Fødselsnummer).
A Norwegian personal identity code consists of 11 digits, without any
whitespace or other delimiters. The form is DDMMYYIIICC, where III is
a serial number separating persons born oh the same date with different
inte... | [
"Returns",
"11",
"character",
"Norwegian",
"personal",
"identity",
"code",
"(",
"Fødselsnummer",
")",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/ssn/no_NO/__init__.py#L32-L83 | train |
joke2k/faker | faker/providers/ssn/es_ES/__init__.py | Provider.nie | def nie(self):
"""
https://es.wikipedia.org/wiki/N%C3%BAmero_de_identidad_de_extranjero
:return: a random Spanish NIE
"""
first_chr = random.randrange(0, 3)
doi_body = str(random.randrange(0, 10000000)).zfill(7)
control = self._calculate_control_doi(str(first_chr... | python | def nie(self):
"""
https://es.wikipedia.org/wiki/N%C3%BAmero_de_identidad_de_extranjero
:return: a random Spanish NIE
"""
first_chr = random.randrange(0, 3)
doi_body = str(random.randrange(0, 10000000)).zfill(7)
control = self._calculate_control_doi(str(first_chr... | [
"def",
"nie",
"(",
"self",
")",
":",
"first_chr",
"=",
"random",
".",
"randrange",
"(",
"0",
",",
"3",
")",
"doi_body",
"=",
"str",
"(",
"random",
".",
"randrange",
"(",
"0",
",",
"10000000",
")",
")",
".",
"zfill",
"(",
"7",
")",
"control",
"=",... | https://es.wikipedia.org/wiki/N%C3%BAmero_de_identidad_de_extranjero
:return: a random Spanish NIE | [
"https",
":",
"//",
"es",
".",
"wikipedia",
".",
"org",
"/",
"wiki",
"/",
"N%C3%BAmero_de_identidad_de_extranjero",
":",
"return",
":",
"a",
"random",
"Spanish",
"NIE"
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/ssn/es_ES/__init__.py#L26-L35 | train |
joke2k/faker | faker/providers/ssn/es_ES/__init__.py | Provider.nif | def nif(self):
"""
https://es.wikipedia.org/wiki/N%C3%BAmero_de_identificaci%C3%B3n_fiscal
:return: NIF
"""
nie_body = str(random.randrange(0, 100000000)) # generate a number of a maximum of 8 characters long
return nie_body.zfill(8) + self._calculate_control_doi(nie_bo... | python | def nif(self):
"""
https://es.wikipedia.org/wiki/N%C3%BAmero_de_identificaci%C3%B3n_fiscal
:return: NIF
"""
nie_body = str(random.randrange(0, 100000000)) # generate a number of a maximum of 8 characters long
return nie_body.zfill(8) + self._calculate_control_doi(nie_bo... | [
"def",
"nif",
"(",
"self",
")",
":",
"nie_body",
"=",
"str",
"(",
"random",
".",
"randrange",
"(",
"0",
",",
"100000000",
")",
")",
"# generate a number of a maximum of 8 characters long",
"return",
"nie_body",
".",
"zfill",
"(",
"8",
")",
"+",
"self",
".",
... | https://es.wikipedia.org/wiki/N%C3%BAmero_de_identificaci%C3%B3n_fiscal
:return: NIF | [
"https",
":",
"//",
"es",
".",
"wikipedia",
".",
"org",
"/",
"wiki",
"/",
"N%C3%BAmero_de_identificaci%C3%B3n_fiscal",
":",
"return",
":",
"NIF"
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/ssn/es_ES/__init__.py#L37-L44 | train |
joke2k/faker | faker/providers/ssn/es_ES/__init__.py | Provider.cif | def cif(self):
"""
https://es.wikipedia.org/wiki/C%C3%B3digo_de_identificaci%C3%B3n_fiscal
:return: a random Spanish CIF
"""
first_chr = random.choice('ABCDEFGHJNPQRSUVW')
doi_body = str(random.randrange(0, 10000000)).zfill(7)
cif = first_chr + doi_body
r... | python | def cif(self):
"""
https://es.wikipedia.org/wiki/C%C3%B3digo_de_identificaci%C3%B3n_fiscal
:return: a random Spanish CIF
"""
first_chr = random.choice('ABCDEFGHJNPQRSUVW')
doi_body = str(random.randrange(0, 10000000)).zfill(7)
cif = first_chr + doi_body
r... | [
"def",
"cif",
"(",
"self",
")",
":",
"first_chr",
"=",
"random",
".",
"choice",
"(",
"'ABCDEFGHJNPQRSUVW'",
")",
"doi_body",
"=",
"str",
"(",
"random",
".",
"randrange",
"(",
"0",
",",
"10000000",
")",
")",
".",
"zfill",
"(",
"7",
")",
"cif",
"=",
... | https://es.wikipedia.org/wiki/C%C3%B3digo_de_identificaci%C3%B3n_fiscal
:return: a random Spanish CIF | [
"https",
":",
"//",
"es",
".",
"wikipedia",
".",
"org",
"/",
"wiki",
"/",
"C%C3%B3digo_de_identificaci%C3%B3n_fiscal",
":",
"return",
":",
"a",
"random",
"Spanish",
"CIF"
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/ssn/es_ES/__init__.py#L46-L55 | train |
joke2k/faker | faker/providers/ssn/es_ES/__init__.py | Provider.doi | def doi(self):
"""
https://es.wikipedia.org/wiki/Identificador_de_objeto_digital
:return: a random Spanish CIF or NIE or NIF
"""
return random.choice([self.cif, self.nie, self.nif])() | python | def doi(self):
"""
https://es.wikipedia.org/wiki/Identificador_de_objeto_digital
:return: a random Spanish CIF or NIE or NIF
"""
return random.choice([self.cif, self.nie, self.nif])() | [
"def",
"doi",
"(",
"self",
")",
":",
"return",
"random",
".",
"choice",
"(",
"[",
"self",
".",
"cif",
",",
"self",
".",
"nie",
",",
"self",
".",
"nif",
"]",
")",
"(",
")"
] | https://es.wikipedia.org/wiki/Identificador_de_objeto_digital
:return: a random Spanish CIF or NIE or NIF | [
"https",
":",
"//",
"es",
".",
"wikipedia",
".",
"org",
"/",
"wiki",
"/",
"Identificador_de_objeto_digital",
":",
"return",
":",
"a",
"random",
"Spanish",
"CIF",
"or",
"NIE",
"or",
"NIF"
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/ssn/es_ES/__init__.py#L57-L63 | train |
joke2k/faker | faker/providers/ssn/es_ES/__init__.py | Provider._calculate_control_cif | def _calculate_control_cif(cls, cif):
"""
Calculate the letter that corresponds to the end of a CIF
:param cif: calculated value so far needing a control character
:return: CIF control character
Code was converted from the minified js of: https://generadordni.es/
"""
... | python | def _calculate_control_cif(cls, cif):
"""
Calculate the letter that corresponds to the end of a CIF
:param cif: calculated value so far needing a control character
:return: CIF control character
Code was converted from the minified js of: https://generadordni.es/
"""
... | [
"def",
"_calculate_control_cif",
"(",
"cls",
",",
"cif",
")",
":",
"sum_",
"=",
"0",
"first_chr",
",",
"cif_value",
"=",
"cif",
"[",
"0",
"]",
",",
"cif",
"[",
"1",
":",
"]",
"for",
"index",
",",
"char",
"in",
"enumerate",
"(",
"cif_value",
")",
":... | Calculate the letter that corresponds to the end of a CIF
:param cif: calculated value so far needing a control character
:return: CIF control character
Code was converted from the minified js of: https://generadordni.es/ | [
"Calculate",
"the",
"letter",
"that",
"corresponds",
"to",
"the",
"end",
"of",
"a",
"CIF",
":",
"param",
"cif",
":",
"calculated",
"value",
"so",
"far",
"needing",
"a",
"control",
"character",
":",
"return",
":",
"CIF",
"control",
"character"
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/ssn/es_ES/__init__.py#L77-L107 | train |
joke2k/faker | faker/providers/ssn/fi_FI/__init__.py | Provider.ssn | def ssn(self, min_age=0, max_age=105, artificial=False):
"""
Returns 11 character Finnish personal identity code (Henkilötunnus,
HETU, Swedish: Personbeteckning). This function assigns random
gender to person.
HETU consists of eleven characters of the form DDMMYYCZZZQ, where
... | python | def ssn(self, min_age=0, max_age=105, artificial=False):
"""
Returns 11 character Finnish personal identity code (Henkilötunnus,
HETU, Swedish: Personbeteckning). This function assigns random
gender to person.
HETU consists of eleven characters of the form DDMMYYCZZZQ, where
... | [
"def",
"ssn",
"(",
"self",
",",
"min_age",
"=",
"0",
",",
"max_age",
"=",
"105",
",",
"artificial",
"=",
"False",
")",
":",
"def",
"_checksum",
"(",
"hetu",
")",
":",
"checksum_characters",
"=",
"\"0123456789ABCDEFHJKLMNPRSTUVWXY\"",
"return",
"checksum_charac... | Returns 11 character Finnish personal identity code (Henkilötunnus,
HETU, Swedish: Personbeteckning). This function assigns random
gender to person.
HETU consists of eleven characters of the form DDMMYYCZZZQ, where
DDMMYY is the date of birth, C the century sign, ZZZ the individual
... | [
"Returns",
"11",
"character",
"Finnish",
"personal",
"identity",
"code",
"(",
"Henkilötunnus",
"HETU",
"Swedish",
":",
"Personbeteckning",
")",
".",
"This",
"function",
"assigns",
"random",
"gender",
"to",
"person",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/ssn/fi_FI/__init__.py#L10-L41 | train |
joke2k/faker | faker/providers/ssn/fi_FI/__init__.py | Provider._get_century_code | def _get_century_code(year):
"""Returns the century code for a given year"""
if 2000 <= year < 3000:
separator = 'A'
elif 1900 <= year < 2000:
separator = '-'
elif 1800 <= year < 1900:
separator = '+'
else:
raise ValueError('Finnish... | python | def _get_century_code(year):
"""Returns the century code for a given year"""
if 2000 <= year < 3000:
separator = 'A'
elif 1900 <= year < 2000:
separator = '-'
elif 1800 <= year < 1900:
separator = '+'
else:
raise ValueError('Finnish... | [
"def",
"_get_century_code",
"(",
"year",
")",
":",
"if",
"2000",
"<=",
"year",
"<",
"3000",
":",
"separator",
"=",
"'A'",
"elif",
"1900",
"<=",
"year",
"<",
"2000",
":",
"separator",
"=",
"'-'",
"elif",
"1800",
"<=",
"year",
"<",
"1900",
":",
"separa... | Returns the century code for a given year | [
"Returns",
"the",
"century",
"code",
"for",
"a",
"given",
"year"
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/ssn/fi_FI/__init__.py#L44-L54 | train |
joke2k/faker | faker/providers/ssn/sv_SE/__init__.py | Provider.ssn | def ssn(self, min_age=18, max_age=90):
"""
Returns a 10 digit Swedish SSN, "Personnummer".
It consists of 10 digits in the form YYMMDD-SSGQ, where
YYMMDD is the date of birth, SSS is a serial number
and Q is a control character (Luhn checksum).
http://en.wikipedia.org/w... | python | def ssn(self, min_age=18, max_age=90):
"""
Returns a 10 digit Swedish SSN, "Personnummer".
It consists of 10 digits in the form YYMMDD-SSGQ, where
YYMMDD is the date of birth, SSS is a serial number
and Q is a control character (Luhn checksum).
http://en.wikipedia.org/w... | [
"def",
"ssn",
"(",
"self",
",",
"min_age",
"=",
"18",
",",
"max_age",
"=",
"90",
")",
":",
"def",
"_luhn_checksum",
"(",
"number",
")",
":",
"def",
"digits_of",
"(",
"n",
")",
":",
"return",
"[",
"int",
"(",
"d",
")",
"for",
"d",
"in",
"str",
"... | Returns a 10 digit Swedish SSN, "Personnummer".
It consists of 10 digits in the form YYMMDD-SSGQ, where
YYMMDD is the date of birth, SSS is a serial number
and Q is a control character (Luhn checksum).
http://en.wikipedia.org/wiki/Personal_identity_number_(Sweden) | [
"Returns",
"a",
"10",
"digit",
"Swedish",
"SSN",
"Personnummer",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/ssn/sv_SE/__init__.py#L10-L44 | train |
joke2k/faker | faker/providers/profile/__init__.py | Provider.simple_profile | def simple_profile(self, sex=None):
"""
Generates a basic profile with personal informations
"""
SEX = ["F", "M"]
if sex not in SEX:
sex = self.random_element(SEX)
if sex == 'F':
name = self.generator.name_female()
elif sex == 'M':
... | python | def simple_profile(self, sex=None):
"""
Generates a basic profile with personal informations
"""
SEX = ["F", "M"]
if sex not in SEX:
sex = self.random_element(SEX)
if sex == 'F':
name = self.generator.name_female()
elif sex == 'M':
... | [
"def",
"simple_profile",
"(",
"self",
",",
"sex",
"=",
"None",
")",
":",
"SEX",
"=",
"[",
"\"F\"",
",",
"\"M\"",
"]",
"if",
"sex",
"not",
"in",
"SEX",
":",
"sex",
"=",
"self",
".",
"random_element",
"(",
"SEX",
")",
"if",
"sex",
"==",
"'F'",
":",... | Generates a basic profile with personal informations | [
"Generates",
"a",
"basic",
"profile",
"with",
"personal",
"informations"
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/profile/__init__.py#L13-L31 | train |
joke2k/faker | faker/providers/profile/__init__.py | Provider.profile | def profile(self, fields=None, sex=None):
"""
Generates a complete profile.
If "fields" is not empty, only the fields in the list will be returned
"""
if fields is None:
fields = []
d = {
"job": self.generator.job(),
"company": self.ge... | python | def profile(self, fields=None, sex=None):
"""
Generates a complete profile.
If "fields" is not empty, only the fields in the list will be returned
"""
if fields is None:
fields = []
d = {
"job": self.generator.job(),
"company": self.ge... | [
"def",
"profile",
"(",
"self",
",",
"fields",
"=",
"None",
",",
"sex",
"=",
"None",
")",
":",
"if",
"fields",
"is",
"None",
":",
"fields",
"=",
"[",
"]",
"d",
"=",
"{",
"\"job\"",
":",
"self",
".",
"generator",
".",
"job",
"(",
")",
",",
"\"com... | Generates a complete profile.
If "fields" is not empty, only the fields in the list will be returned | [
"Generates",
"a",
"complete",
"profile",
".",
"If",
"fields",
"is",
"not",
"empty",
"only",
"the",
"fields",
"in",
"the",
"list",
"will",
"be",
"returned"
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/profile/__init__.py#L33-L56 | train |
joke2k/faker | faker/providers/person/__init__.py | Provider.name | def name(self):
"""
:example 'John Doe'
"""
pattern = self.random_element(self.formats)
return self.generator.parse(pattern) | python | def name(self):
"""
:example 'John Doe'
"""
pattern = self.random_element(self.formats)
return self.generator.parse(pattern) | [
"def",
"name",
"(",
"self",
")",
":",
"pattern",
"=",
"self",
".",
"random_element",
"(",
"self",
".",
"formats",
")",
"return",
"self",
".",
"generator",
".",
"parse",
"(",
"pattern",
")"
] | :example 'John Doe' | [
":",
"example",
"John",
"Doe"
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/person/__init__.py#L16-L21 | train |
joke2k/faker | faker/utils/datetime_safe.py | new_datetime | def new_datetime(d):
"""
Generate a safe datetime from a datetime.date or datetime.datetime object.
"""
kw = [d.year, d.month, d.day]
if isinstance(d, real_datetime):
kw.extend([d.hour, d.minute, d.second, d.microsecond, d.tzinfo])
return datetime(*kw) | python | def new_datetime(d):
"""
Generate a safe datetime from a datetime.date or datetime.datetime object.
"""
kw = [d.year, d.month, d.day]
if isinstance(d, real_datetime):
kw.extend([d.hour, d.minute, d.second, d.microsecond, d.tzinfo])
return datetime(*kw) | [
"def",
"new_datetime",
"(",
"d",
")",
":",
"kw",
"=",
"[",
"d",
".",
"year",
",",
"d",
".",
"month",
",",
"d",
".",
"day",
"]",
"if",
"isinstance",
"(",
"d",
",",
"real_datetime",
")",
":",
"kw",
".",
"extend",
"(",
"[",
"d",
".",
"hour",
","... | Generate a safe datetime from a datetime.date or datetime.datetime object. | [
"Generate",
"a",
"safe",
"datetime",
"from",
"a",
"datetime",
".",
"date",
"or",
"datetime",
".",
"datetime",
"object",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/utils/datetime_safe.py#L44-L51 | train |
joke2k/faker | faker/providers/company/__init__.py | Provider.company | def company(self):
"""
:example 'Acme Ltd'
"""
pattern = self.random_element(self.formats)
return self.generator.parse(pattern) | python | def company(self):
"""
:example 'Acme Ltd'
"""
pattern = self.random_element(self.formats)
return self.generator.parse(pattern) | [
"def",
"company",
"(",
"self",
")",
":",
"pattern",
"=",
"self",
".",
"random_element",
"(",
"self",
".",
"formats",
")",
"return",
"self",
".",
"generator",
".",
"parse",
"(",
"pattern",
")"
] | :example 'Acme Ltd' | [
":",
"example",
"Acme",
"Ltd"
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/company/__init__.py#L497-L502 | train |
joke2k/faker | faker/providers/company/__init__.py | Provider.catch_phrase | def catch_phrase(self):
"""
:example 'Robust full-range hub'
"""
result = []
for word_list in self.catch_phrase_words:
result.append(self.random_element(word_list))
return " ".join(result) | python | def catch_phrase(self):
"""
:example 'Robust full-range hub'
"""
result = []
for word_list in self.catch_phrase_words:
result.append(self.random_element(word_list))
return " ".join(result) | [
"def",
"catch_phrase",
"(",
"self",
")",
":",
"result",
"=",
"[",
"]",
"for",
"word_list",
"in",
"self",
".",
"catch_phrase_words",
":",
"result",
".",
"append",
"(",
"self",
".",
"random_element",
"(",
"word_list",
")",
")",
"return",
"\" \"",
".",
"joi... | :example 'Robust full-range hub' | [
":",
"example",
"Robust",
"full",
"-",
"range",
"hub"
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/company/__init__.py#L510-L518 | train |
joke2k/faker | faker/providers/company/__init__.py | Provider.bs | def bs(self):
"""
:example 'integrate extensible convergence'
"""
result = []
for word_list in self.bsWords:
result.append(self.random_element(word_list))
return " ".join(result) | python | def bs(self):
"""
:example 'integrate extensible convergence'
"""
result = []
for word_list in self.bsWords:
result.append(self.random_element(word_list))
return " ".join(result) | [
"def",
"bs",
"(",
"self",
")",
":",
"result",
"=",
"[",
"]",
"for",
"word_list",
"in",
"self",
".",
"bsWords",
":",
"result",
".",
"append",
"(",
"self",
".",
"random_element",
"(",
"word_list",
")",
")",
"return",
"\" \"",
".",
"join",
"(",
"result"... | :example 'integrate extensible convergence' | [
":",
"example",
"integrate",
"extensible",
"convergence"
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/company/__init__.py#L520-L528 | train |
joke2k/faker | faker/providers/file/__init__.py | Provider.mime_type | def mime_type(self, category=None):
"""
:param category: application|audio|image|message|model|multipart|text|video
"""
category = category if category else self.random_element(
list(self.mime_types.keys()))
return self.random_element(self.mime_types[category]) | python | def mime_type(self, category=None):
"""
:param category: application|audio|image|message|model|multipart|text|video
"""
category = category if category else self.random_element(
list(self.mime_types.keys()))
return self.random_element(self.mime_types[category]) | [
"def",
"mime_type",
"(",
"self",
",",
"category",
"=",
"None",
")",
":",
"category",
"=",
"category",
"if",
"category",
"else",
"self",
".",
"random_element",
"(",
"list",
"(",
"self",
".",
"mime_types",
".",
"keys",
"(",
")",
")",
")",
"return",
"self... | :param category: application|audio|image|message|model|multipart|text|video | [
":",
"param",
"category",
":",
"application|audio|image|message|model|multipart|text|video"
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/file/__init__.py#L205-L211 | train |
joke2k/faker | faker/providers/file/__init__.py | Provider.file_name | def file_name(self, category=None, extension=None):
"""
:param category: audio|image|office|text|video
:param extension: file extension
"""
extension = extension if extension else self.file_extension(category)
filename = self.generator.word()
return '{0}.{1}'.form... | python | def file_name(self, category=None, extension=None):
"""
:param category: audio|image|office|text|video
:param extension: file extension
"""
extension = extension if extension else self.file_extension(category)
filename = self.generator.word()
return '{0}.{1}'.form... | [
"def",
"file_name",
"(",
"self",
",",
"category",
"=",
"None",
",",
"extension",
"=",
"None",
")",
":",
"extension",
"=",
"extension",
"if",
"extension",
"else",
"self",
".",
"file_extension",
"(",
"category",
")",
"filename",
"=",
"self",
".",
"generator"... | :param category: audio|image|office|text|video
:param extension: file extension | [
":",
"param",
"category",
":",
"audio|image|office|text|video",
":",
"param",
"extension",
":",
"file",
"extension"
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/file/__init__.py#L213-L220 | train |
joke2k/faker | faker/providers/file/__init__.py | Provider.file_extension | def file_extension(self, category=None):
"""
:param category: audio|image|office|text|video
"""
category = category if category else self.random_element(
list(self.file_extensions.keys()))
return self.random_element(self.file_extensions[category]) | python | def file_extension(self, category=None):
"""
:param category: audio|image|office|text|video
"""
category = category if category else self.random_element(
list(self.file_extensions.keys()))
return self.random_element(self.file_extensions[category]) | [
"def",
"file_extension",
"(",
"self",
",",
"category",
"=",
"None",
")",
":",
"category",
"=",
"category",
"if",
"category",
"else",
"self",
".",
"random_element",
"(",
"list",
"(",
"self",
".",
"file_extensions",
".",
"keys",
"(",
")",
")",
")",
"return... | :param category: audio|image|office|text|video | [
":",
"param",
"category",
":",
"audio|image|office|text|video"
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/file/__init__.py#L222-L228 | train |
joke2k/faker | faker/providers/file/__init__.py | Provider.file_path | def file_path(self, depth=1, category=None, extension=None):
"""
:param category: audio|image|office|text|video
:param extension: file extension
:param depth: depth of the file (depth >= 0)
"""
file = self.file_name(category, extension)
path = "/{0}".format(file)
... | python | def file_path(self, depth=1, category=None, extension=None):
"""
:param category: audio|image|office|text|video
:param extension: file extension
:param depth: depth of the file (depth >= 0)
"""
file = self.file_name(category, extension)
path = "/{0}".format(file)
... | [
"def",
"file_path",
"(",
"self",
",",
"depth",
"=",
"1",
",",
"category",
"=",
"None",
",",
"extension",
"=",
"None",
")",
":",
"file",
"=",
"self",
".",
"file_name",
"(",
"category",
",",
"extension",
")",
"path",
"=",
"\"/{0}\"",
".",
"format",
"("... | :param category: audio|image|office|text|video
:param extension: file extension
:param depth: depth of the file (depth >= 0) | [
":",
"param",
"category",
":",
"audio|image|office|text|video",
":",
"param",
"extension",
":",
"file",
"extension",
":",
"param",
"depth",
":",
"depth",
"of",
"the",
"file",
"(",
"depth",
">",
"=",
"0",
")"
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/file/__init__.py#L230-L240 | train |
joke2k/faker | faker/providers/file/__init__.py | Provider.unix_device | def unix_device(self, prefix=None):
"""
:param prefix: sd|vd|xvd
"""
prefix = prefix or self.random_element(self.unix_device_prefixes)
suffix = self.random_element(string.ascii_lowercase)
path = '/dev/%s%s' % (prefix, suffix)
return path | python | def unix_device(self, prefix=None):
"""
:param prefix: sd|vd|xvd
"""
prefix = prefix or self.random_element(self.unix_device_prefixes)
suffix = self.random_element(string.ascii_lowercase)
path = '/dev/%s%s' % (prefix, suffix)
return path | [
"def",
"unix_device",
"(",
"self",
",",
"prefix",
"=",
"None",
")",
":",
"prefix",
"=",
"prefix",
"or",
"self",
".",
"random_element",
"(",
"self",
".",
"unix_device_prefixes",
")",
"suffix",
"=",
"self",
".",
"random_element",
"(",
"string",
".",
"ascii_l... | :param prefix: sd|vd|xvd | [
":",
"param",
"prefix",
":",
"sd|vd|xvd"
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/file/__init__.py#L242-L249 | train |
joke2k/faker | faker/providers/file/__init__.py | Provider.unix_partition | def unix_partition(self, prefix=None):
"""
:param prefix: sd|vd|xvd
"""
path = self.unix_device(prefix=prefix)
path += str(self.random_digit())
return path | python | def unix_partition(self, prefix=None):
"""
:param prefix: sd|vd|xvd
"""
path = self.unix_device(prefix=prefix)
path += str(self.random_digit())
return path | [
"def",
"unix_partition",
"(",
"self",
",",
"prefix",
"=",
"None",
")",
":",
"path",
"=",
"self",
".",
"unix_device",
"(",
"prefix",
"=",
"prefix",
")",
"path",
"+=",
"str",
"(",
"self",
".",
"random_digit",
"(",
")",
")",
"return",
"path"
] | :param prefix: sd|vd|xvd | [
":",
"param",
"prefix",
":",
"sd|vd|xvd"
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/file/__init__.py#L251-L257 | train |
joke2k/faker | faker/providers/ssn/en_US/__init__.py | Provider.itin | def itin(self):
"""Generate a random United States Individual Taxpayer Identification Number (ITIN).
An United States Individual Taxpayer Identification Number
(ITIN) is a tax processing number issued by the Internal
Revenue Service. It is a nine-digit number that always begins
... | python | def itin(self):
"""Generate a random United States Individual Taxpayer Identification Number (ITIN).
An United States Individual Taxpayer Identification Number
(ITIN) is a tax processing number issued by the Internal
Revenue Service. It is a nine-digit number that always begins
... | [
"def",
"itin",
"(",
"self",
")",
":",
"area",
"=",
"self",
".",
"random_int",
"(",
"min",
"=",
"900",
",",
"max",
"=",
"999",
")",
"serial",
"=",
"self",
".",
"random_int",
"(",
"min",
"=",
"0",
",",
"max",
"=",
"9999",
")",
"# The group number mus... | Generate a random United States Individual Taxpayer Identification Number (ITIN).
An United States Individual Taxpayer Identification Number
(ITIN) is a tax processing number issued by the Internal
Revenue Service. It is a nine-digit number that always begins
with the number 9 and has a... | [
"Generate",
"a",
"random",
"United",
"States",
"Individual",
"Taxpayer",
"Identification",
"Number",
"(",
"ITIN",
")",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/ssn/en_US/__init__.py#L13-L33 | train |
joke2k/faker | faker/providers/ssn/en_US/__init__.py | Provider.ein | def ein(self):
"""Generate a random United States Employer Identification Number (EIN).
An United States An Employer Identification Number (EIN) is
also known as a Federal Tax Identification Number, and is
used to identify a business entity. EINs follow a format of a
two-dig... | python | def ein(self):
"""Generate a random United States Employer Identification Number (EIN).
An United States An Employer Identification Number (EIN) is
also known as a Federal Tax Identification Number, and is
used to identify a business entity. EINs follow a format of a
two-dig... | [
"def",
"ein",
"(",
"self",
")",
":",
"# Only certain EIN Prefix values are assigned:",
"#",
"# https://www.irs.gov/businesses/small-businesses-self-employed/how-eins-are-assigned-and-valid-ein-prefixes",
"ein_prefix_choices",
"=",
"[",
"'01'",
",",
"'02'",
",",
"'03'",
",",
"'04'... | Generate a random United States Employer Identification Number (EIN).
An United States An Employer Identification Number (EIN) is
also known as a Federal Tax Identification Number, and is
used to identify a business entity. EINs follow a format of a
two-digit prefix followed by a hy... | [
"Generate",
"a",
"random",
"United",
"States",
"Employer",
"Identification",
"Number",
"(",
"EIN",
")",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/ssn/en_US/__init__.py#L35-L140 | train |
joke2k/faker | faker/providers/ssn/en_US/__init__.py | Provider.ssn | def ssn(self, taxpayer_identification_number_type=SSN_TYPE):
""" Generate a random United States Taxpayer Identification Number of the specified type.
If no type is specified, a US SSN is returned.
"""
if taxpayer_identification_number_type == self.ITIN_TYPE:
return self.it... | python | def ssn(self, taxpayer_identification_number_type=SSN_TYPE):
""" Generate a random United States Taxpayer Identification Number of the specified type.
If no type is specified, a US SSN is returned.
"""
if taxpayer_identification_number_type == self.ITIN_TYPE:
return self.it... | [
"def",
"ssn",
"(",
"self",
",",
"taxpayer_identification_number_type",
"=",
"SSN_TYPE",
")",
":",
"if",
"taxpayer_identification_number_type",
"==",
"self",
".",
"ITIN_TYPE",
":",
"return",
"self",
".",
"itin",
"(",
")",
"elif",
"taxpayer_identification_number_type",
... | Generate a random United States Taxpayer Identification Number of the specified type.
If no type is specified, a US SSN is returned. | [
"Generate",
"a",
"random",
"United",
"States",
"Taxpayer",
"Identification",
"Number",
"of",
"the",
"specified",
"type",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/ssn/en_US/__init__.py#L142-L169 | train |
joke2k/faker | faker/providers/company/pt_BR/__init__.py | Provider.catch_phrase | def catch_phrase(self):
"""
:example 'a segurança de evoluir sem preocupação'
"""
pattern = self.random_element(self.catch_phrase_formats)
catch_phrase = self.generator.parse(pattern)
catch_phrase = catch_phrase[0].upper() + catch_phrase[1:]
return catch_phrase | python | def catch_phrase(self):
"""
:example 'a segurança de evoluir sem preocupação'
"""
pattern = self.random_element(self.catch_phrase_formats)
catch_phrase = self.generator.parse(pattern)
catch_phrase = catch_phrase[0].upper() + catch_phrase[1:]
return catch_phrase | [
"def",
"catch_phrase",
"(",
"self",
")",
":",
"pattern",
"=",
"self",
".",
"random_element",
"(",
"self",
".",
"catch_phrase_formats",
")",
"catch_phrase",
"=",
"self",
".",
"generator",
".",
"parse",
"(",
"pattern",
")",
"catch_phrase",
"=",
"catch_phrase",
... | :example 'a segurança de evoluir sem preocupação' | [
":",
"example",
"a",
"segurança",
"de",
"evoluir",
"sem",
"preocupação"
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/company/pt_BR/__init__.py#L92-L99 | train |
joke2k/faker | faker/providers/company/fr_CH/__init__.py | Provider.ide | def ide(self):
"""
Generates a IDE number (9 digits).
http://www.bfs.admin.ch/bfs/portal/fr/index/themen/00/05/blank/03/02.html
"""
def _checksum(digits):
factors = (5, 4, 3, 2, 7, 6, 5, 4)
sum_ = 0
for i in range(len(digits)):
... | python | def ide(self):
"""
Generates a IDE number (9 digits).
http://www.bfs.admin.ch/bfs/portal/fr/index/themen/00/05/blank/03/02.html
"""
def _checksum(digits):
factors = (5, 4, 3, 2, 7, 6, 5, 4)
sum_ = 0
for i in range(len(digits)):
... | [
"def",
"ide",
"(",
"self",
")",
":",
"def",
"_checksum",
"(",
"digits",
")",
":",
"factors",
"=",
"(",
"5",
",",
"4",
",",
"3",
",",
"2",
",",
"7",
",",
"6",
",",
"5",
",",
"4",
")",
"sum_",
"=",
"0",
"for",
"i",
"in",
"range",
"(",
"len"... | Generates a IDE number (9 digits).
http://www.bfs.admin.ch/bfs/portal/fr/index/themen/00/05/blank/03/02.html | [
"Generates",
"a",
"IDE",
"number",
"(",
"9",
"digits",
")",
".",
"http",
":",
"//",
"www",
".",
"bfs",
".",
"admin",
".",
"ch",
"/",
"bfs",
"/",
"portal",
"/",
"fr",
"/",
"index",
"/",
"themen",
"/",
"00",
"/",
"05",
"/",
"blank",
"/",
"03",
... | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/company/fr_CH/__init__.py#L9-L36 | train |
joke2k/faker | faker/providers/date_time/__init__.py | Provider.unix_time | def unix_time(self, end_datetime=None, start_datetime=None):
"""
Get a timestamp between January 1, 1970 and now, unless passed
explicit start_datetime or end_datetime values.
:example 1061306726
"""
start_datetime = self._parse_start_datetime(start_datetime)
end_... | python | def unix_time(self, end_datetime=None, start_datetime=None):
"""
Get a timestamp between January 1, 1970 and now, unless passed
explicit start_datetime or end_datetime values.
:example 1061306726
"""
start_datetime = self._parse_start_datetime(start_datetime)
end_... | [
"def",
"unix_time",
"(",
"self",
",",
"end_datetime",
"=",
"None",
",",
"start_datetime",
"=",
"None",
")",
":",
"start_datetime",
"=",
"self",
".",
"_parse_start_datetime",
"(",
"start_datetime",
")",
"end_datetime",
"=",
"self",
".",
"_parse_end_datetime",
"("... | Get a timestamp between January 1, 1970 and now, unless passed
explicit start_datetime or end_datetime values.
:example 1061306726 | [
"Get",
"a",
"timestamp",
"between",
"January",
"1",
"1970",
"and",
"now",
"unless",
"passed",
"explicit",
"start_datetime",
"or",
"end_datetime",
"values",
".",
":",
"example",
"1061306726"
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/date_time/__init__.py#L1368-L1376 | train |
joke2k/faker | faker/providers/date_time/__init__.py | Provider.time_delta | def time_delta(self, end_datetime=None):
"""
Get a timedelta object
"""
start_datetime = self._parse_start_datetime('now')
end_datetime = self._parse_end_datetime(end_datetime)
seconds = end_datetime - start_datetime
ts = self.generator.random.randint(*sorted([0,... | python | def time_delta(self, end_datetime=None):
"""
Get a timedelta object
"""
start_datetime = self._parse_start_datetime('now')
end_datetime = self._parse_end_datetime(end_datetime)
seconds = end_datetime - start_datetime
ts = self.generator.random.randint(*sorted([0,... | [
"def",
"time_delta",
"(",
"self",
",",
"end_datetime",
"=",
"None",
")",
":",
"start_datetime",
"=",
"self",
".",
"_parse_start_datetime",
"(",
"'now'",
")",
"end_datetime",
"=",
"self",
".",
"_parse_end_datetime",
"(",
"end_datetime",
")",
"seconds",
"=",
"en... | Get a timedelta object | [
"Get",
"a",
"timedelta",
"object"
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/date_time/__init__.py#L1378-L1387 | train |
joke2k/faker | faker/providers/date_time/__init__.py | Provider.date_time | def date_time(self, tzinfo=None, end_datetime=None):
"""
Get a datetime object for a date between January 1, 1970 and now
:param tzinfo: timezone, instance of datetime.tzinfo subclass
:example DateTime('2005-08-16 20:39:21')
:return datetime
"""
# NOTE: On windows... | python | def date_time(self, tzinfo=None, end_datetime=None):
"""
Get a datetime object for a date between January 1, 1970 and now
:param tzinfo: timezone, instance of datetime.tzinfo subclass
:example DateTime('2005-08-16 20:39:21')
:return datetime
"""
# NOTE: On windows... | [
"def",
"date_time",
"(",
"self",
",",
"tzinfo",
"=",
"None",
",",
"end_datetime",
"=",
"None",
")",
":",
"# NOTE: On windows, the lowest value you can get from windows is 86400",
"# on the first day. Known python issue:",
"# https://bugs.python.org/issue30684",
"return"... | Get a datetime object for a date between January 1, 1970 and now
:param tzinfo: timezone, instance of datetime.tzinfo subclass
:example DateTime('2005-08-16 20:39:21')
:return datetime | [
"Get",
"a",
"datetime",
"object",
"for",
"a",
"date",
"between",
"January",
"1",
"1970",
"and",
"now",
":",
"param",
"tzinfo",
":",
"timezone",
"instance",
"of",
"datetime",
".",
"tzinfo",
"subclass",
":",
"example",
"DateTime",
"(",
"2005",
"-",
"08",
"... | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/date_time/__init__.py#L1389-L1400 | train |
joke2k/faker | faker/providers/date_time/__init__.py | Provider.date_time_ad | def date_time_ad(self, tzinfo=None, end_datetime=None, start_datetime=None):
"""
Get a datetime object for a date between January 1, 001 and now
:param tzinfo: timezone, instance of datetime.tzinfo subclass
:example DateTime('1265-03-22 21:15:52')
:return datetime
"""
... | python | def date_time_ad(self, tzinfo=None, end_datetime=None, start_datetime=None):
"""
Get a datetime object for a date between January 1, 001 and now
:param tzinfo: timezone, instance of datetime.tzinfo subclass
:example DateTime('1265-03-22 21:15:52')
:return datetime
"""
... | [
"def",
"date_time_ad",
"(",
"self",
",",
"tzinfo",
"=",
"None",
",",
"end_datetime",
"=",
"None",
",",
"start_datetime",
"=",
"None",
")",
":",
"# 1970-01-01 00:00:00 UTC minus 62135596800 seconds is",
"# 0001-01-01 00:00:00 UTC. Since _parse_end_datetime() is used",
"# else... | Get a datetime object for a date between January 1, 001 and now
:param tzinfo: timezone, instance of datetime.tzinfo subclass
:example DateTime('1265-03-22 21:15:52')
:return datetime | [
"Get",
"a",
"datetime",
"object",
"for",
"a",
"date",
"between",
"January",
"1",
"001",
"and",
"now",
":",
"param",
"tzinfo",
":",
"timezone",
"instance",
"of",
"datetime",
".",
"tzinfo",
"subclass",
":",
"example",
"DateTime",
"(",
"1265",
"-",
"03",
"-... | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/date_time/__init__.py#L1402-L1427 | train |
joke2k/faker | faker/providers/date_time/__init__.py | Provider.iso8601 | def iso8601(self, tzinfo=None, end_datetime=None):
"""
:param tzinfo: timezone, instance of datetime.tzinfo subclass
:example '2003-10-21T16:05:52+0000'
"""
return self.date_time(tzinfo, end_datetime=end_datetime).isoformat() | python | def iso8601(self, tzinfo=None, end_datetime=None):
"""
:param tzinfo: timezone, instance of datetime.tzinfo subclass
:example '2003-10-21T16:05:52+0000'
"""
return self.date_time(tzinfo, end_datetime=end_datetime).isoformat() | [
"def",
"iso8601",
"(",
"self",
",",
"tzinfo",
"=",
"None",
",",
"end_datetime",
"=",
"None",
")",
":",
"return",
"self",
".",
"date_time",
"(",
"tzinfo",
",",
"end_datetime",
"=",
"end_datetime",
")",
".",
"isoformat",
"(",
")"
] | :param tzinfo: timezone, instance of datetime.tzinfo subclass
:example '2003-10-21T16:05:52+0000' | [
":",
"param",
"tzinfo",
":",
"timezone",
"instance",
"of",
"datetime",
".",
"tzinfo",
"subclass",
":",
"example",
"2003",
"-",
"10",
"-",
"21T16",
":",
"05",
":",
"52",
"+",
"0000"
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/date_time/__init__.py#L1429-L1434 | train |
joke2k/faker | faker/providers/date_time/__init__.py | Provider.date | def date(self, pattern='%Y-%m-%d', end_datetime=None):
"""
Get a date string between January 1, 1970 and now
:param pattern format
:example '2008-11-27'
"""
return self.date_time(end_datetime=end_datetime).strftime(pattern) | python | def date(self, pattern='%Y-%m-%d', end_datetime=None):
"""
Get a date string between January 1, 1970 and now
:param pattern format
:example '2008-11-27'
"""
return self.date_time(end_datetime=end_datetime).strftime(pattern) | [
"def",
"date",
"(",
"self",
",",
"pattern",
"=",
"'%Y-%m-%d'",
",",
"end_datetime",
"=",
"None",
")",
":",
"return",
"self",
".",
"date_time",
"(",
"end_datetime",
"=",
"end_datetime",
")",
".",
"strftime",
"(",
"pattern",
")"
] | Get a date string between January 1, 1970 and now
:param pattern format
:example '2008-11-27' | [
"Get",
"a",
"date",
"string",
"between",
"January",
"1",
"1970",
"and",
"now",
":",
"param",
"pattern",
"format",
":",
"example",
"2008",
"-",
"11",
"-",
"27"
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/date_time/__init__.py#L1436-L1442 | train |
joke2k/faker | faker/providers/date_time/__init__.py | Provider.time | def time(self, pattern='%H:%M:%S', end_datetime=None):
"""
Get a time string (24h format by default)
:param pattern format
:example '15:02:34'
"""
return self.date_time(
end_datetime=end_datetime).time().strftime(pattern) | python | def time(self, pattern='%H:%M:%S', end_datetime=None):
"""
Get a time string (24h format by default)
:param pattern format
:example '15:02:34'
"""
return self.date_time(
end_datetime=end_datetime).time().strftime(pattern) | [
"def",
"time",
"(",
"self",
",",
"pattern",
"=",
"'%H:%M:%S'",
",",
"end_datetime",
"=",
"None",
")",
":",
"return",
"self",
".",
"date_time",
"(",
"end_datetime",
"=",
"end_datetime",
")",
".",
"time",
"(",
")",
".",
"strftime",
"(",
"pattern",
")"
] | Get a time string (24h format by default)
:param pattern format
:example '15:02:34' | [
"Get",
"a",
"time",
"string",
"(",
"24h",
"format",
"by",
"default",
")",
":",
"param",
"pattern",
"format",
":",
"example",
"15",
":",
"02",
":",
"34"
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/date_time/__init__.py#L1451-L1458 | train |
joke2k/faker | faker/providers/date_time/__init__.py | Provider.date_time_between | def date_time_between(self, start_date='-30y', end_date='now', tzinfo=None):
"""
Get a DateTime object based on a random date between two given dates.
Accepts date strings that can be recognized by strtotime().
:param start_date Defaults to 30 years ago
:param end_date Defaults ... | python | def date_time_between(self, start_date='-30y', end_date='now', tzinfo=None):
"""
Get a DateTime object based on a random date between two given dates.
Accepts date strings that can be recognized by strtotime().
:param start_date Defaults to 30 years ago
:param end_date Defaults ... | [
"def",
"date_time_between",
"(",
"self",
",",
"start_date",
"=",
"'-30y'",
",",
"end_date",
"=",
"'now'",
",",
"tzinfo",
"=",
"None",
")",
":",
"start_date",
"=",
"self",
".",
"_parse_date_time",
"(",
"start_date",
",",
"tzinfo",
"=",
"tzinfo",
")",
"end_d... | Get a DateTime object based on a random date between two given dates.
Accepts date strings that can be recognized by strtotime().
:param start_date Defaults to 30 years ago
:param end_date Defaults to "now"
:param tzinfo: timezone, instance of datetime.tzinfo subclass
:example D... | [
"Get",
"a",
"DateTime",
"object",
"based",
"on",
"a",
"random",
"date",
"between",
"two",
"given",
"dates",
".",
"Accepts",
"date",
"strings",
"that",
"can",
"be",
"recognized",
"by",
"strtotime",
"()",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/date_time/__init__.py#L1550-L1572 | train |
joke2k/faker | faker/providers/date_time/__init__.py | Provider.date_between | def date_between(self, start_date='-30y', end_date='today'):
"""
Get a Date object based on a random date between two given dates.
Accepts date strings that can be recognized by strtotime().
:param start_date Defaults to 30 years ago
:param end_date Defaults to "today"
:... | python | def date_between(self, start_date='-30y', end_date='today'):
"""
Get a Date object based on a random date between two given dates.
Accepts date strings that can be recognized by strtotime().
:param start_date Defaults to 30 years ago
:param end_date Defaults to "today"
:... | [
"def",
"date_between",
"(",
"self",
",",
"start_date",
"=",
"'-30y'",
",",
"end_date",
"=",
"'today'",
")",
":",
"start_date",
"=",
"self",
".",
"_parse_date",
"(",
"start_date",
")",
"end_date",
"=",
"self",
".",
"_parse_date",
"(",
"end_date",
")",
"retu... | Get a Date object based on a random date between two given dates.
Accepts date strings that can be recognized by strtotime().
:param start_date Defaults to 30 years ago
:param end_date Defaults to "today"
:example Date('1999-02-02')
:return Date | [
"Get",
"a",
"Date",
"object",
"based",
"on",
"a",
"random",
"date",
"between",
"two",
"given",
"dates",
".",
"Accepts",
"date",
"strings",
"that",
"can",
"be",
"recognized",
"by",
"strtotime",
"()",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/date_time/__init__.py#L1574-L1587 | train |
joke2k/faker | faker/providers/date_time/__init__.py | Provider.future_datetime | def future_datetime(self, end_date='+30d', tzinfo=None):
"""
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().
:param end_date Defaults to "+30d"
:param tzinfo: timezone, i... | python | def future_datetime(self, end_date='+30d', tzinfo=None):
"""
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().
:param end_date Defaults to "+30d"
:param tzinfo: timezone, i... | [
"def",
"future_datetime",
"(",
"self",
",",
"end_date",
"=",
"'+30d'",
",",
"tzinfo",
"=",
"None",
")",
":",
"return",
"self",
".",
"date_time_between",
"(",
"start_date",
"=",
"'+1s'",
",",
"end_date",
"=",
"end_date",
",",
"tzinfo",
"=",
"tzinfo",
",",
... | 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().
:param end_date Defaults to "+30d"
:param tzinfo: timezone, instance of datetime.tzinfo subclass
:example DateTime('1999-02-02 11:... | [
"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",
"()",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/date_time/__init__.py#L1589-L1602 | train |
joke2k/faker | faker/providers/date_time/__init__.py | Provider.past_datetime | def past_datetime(self, start_date='-30d', tzinfo=None):
"""
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().
:param start_date Defaults to "-30d"
:param tzinfo: timezone, inst... | python | def past_datetime(self, start_date='-30d', tzinfo=None):
"""
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().
:param start_date Defaults to "-30d"
:param tzinfo: timezone, inst... | [
"def",
"past_datetime",
"(",
"self",
",",
"start_date",
"=",
"'-30d'",
",",
"tzinfo",
"=",
"None",
")",
":",
"return",
"self",
".",
"date_time_between",
"(",
"start_date",
"=",
"start_date",
",",
"end_date",
"=",
"'-1s'",
",",
"tzinfo",
"=",
"tzinfo",
",",... | 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().
:param start_date Defaults to "-30d"
:param tzinfo: timezone, instance of datetime.tzinfo subclass
:example DateTime('1999-02-02 11:42:... | [
"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",
"()",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/date_time/__init__.py#L1617-L1630 | train |
joke2k/faker | faker/providers/date_time/__init__.py | Provider.date_time_between_dates | def date_time_between_dates(
self,
datetime_start=None,
datetime_end=None,
tzinfo=None):
"""
Takes two DateTime objects and returns a random datetime between the two
given datetimes.
Accepts DateTime objects.
:param datetime_start:... | python | def date_time_between_dates(
self,
datetime_start=None,
datetime_end=None,
tzinfo=None):
"""
Takes two DateTime objects and returns a random datetime between the two
given datetimes.
Accepts DateTime objects.
:param datetime_start:... | [
"def",
"date_time_between_dates",
"(",
"self",
",",
"datetime_start",
"=",
"None",
",",
"datetime_end",
"=",
"None",
",",
"tzinfo",
"=",
"None",
")",
":",
"if",
"datetime_start",
"is",
"None",
":",
"datetime_start",
"=",
"datetime",
".",
"now",
"(",
"tzinfo"... | Takes two DateTime objects and returns a random datetime between the two
given datetimes.
Accepts DateTime objects.
:param datetime_start: DateTime
:param datetime_end: DateTime
:param tzinfo: timezone, instance of datetime.tzinfo subclass
:example DateTime('1999-02-02 1... | [
"Takes",
"two",
"DateTime",
"objects",
"and",
"returns",
"a",
"random",
"datetime",
"between",
"the",
"two",
"given",
"datetimes",
".",
"Accepts",
"DateTime",
"objects",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/date_time/__init__.py#L1645-L1682 | train |
joke2k/faker | faker/providers/date_time/__init__.py | Provider.date_time_this_century | def date_time_this_century(
self,
before_now=True,
after_now=False,
tzinfo=None):
"""
Gets a DateTime object for the current century.
:param before_now: include days in current century before today
:param after_now: include days in current... | python | def date_time_this_century(
self,
before_now=True,
after_now=False,
tzinfo=None):
"""
Gets a DateTime object for the current century.
:param before_now: include days in current century before today
:param after_now: include days in current... | [
"def",
"date_time_this_century",
"(",
"self",
",",
"before_now",
"=",
"True",
",",
"after_now",
"=",
"False",
",",
"tzinfo",
"=",
"None",
")",
":",
"now",
"=",
"datetime",
".",
"now",
"(",
"tzinfo",
")",
"this_century_start",
"=",
"datetime",
"(",
"now",
... | Gets a DateTime object for the current century.
:param before_now: include days in current century before today
:param after_now: include days in current century after today
:param tzinfo: timezone, instance of datetime.tzinfo subclass
:example DateTime('2012-04-04 11:02:02')
:r... | [
"Gets",
"a",
"DateTime",
"object",
"for",
"the",
"current",
"century",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/date_time/__init__.py#L1695-L1723 | train |
joke2k/faker | faker/providers/date_time/__init__.py | Provider.date_time_this_decade | def date_time_this_decade(
self,
before_now=True,
after_now=False,
tzinfo=None):
"""
Gets a DateTime object for the decade year.
:param before_now: include days in current decade before today
:param after_now: include days in current decad... | python | def date_time_this_decade(
self,
before_now=True,
after_now=False,
tzinfo=None):
"""
Gets a DateTime object for the decade year.
:param before_now: include days in current decade before today
:param after_now: include days in current decad... | [
"def",
"date_time_this_decade",
"(",
"self",
",",
"before_now",
"=",
"True",
",",
"after_now",
"=",
"False",
",",
"tzinfo",
"=",
"None",
")",
":",
"now",
"=",
"datetime",
".",
"now",
"(",
"tzinfo",
")",
"this_decade_start",
"=",
"datetime",
"(",
"now",
"... | Gets a DateTime object for the decade year.
:param before_now: include days in current decade before today
:param after_now: include days in current decade after today
:param tzinfo: timezone, instance of datetime.tzinfo subclass
:example DateTime('2012-04-04 11:02:02')
:return ... | [
"Gets",
"a",
"DateTime",
"object",
"for",
"the",
"decade",
"year",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/date_time/__init__.py#L1725-L1753 | train |
joke2k/faker | faker/providers/date_time/__init__.py | Provider.date_time_this_year | def date_time_this_year(
self,
before_now=True,
after_now=False,
tzinfo=None):
"""
Gets a DateTime object for the current year.
:param before_now: include days in current year before today
:param after_now: include days in current year aft... | python | def date_time_this_year(
self,
before_now=True,
after_now=False,
tzinfo=None):
"""
Gets a DateTime object for the current year.
:param before_now: include days in current year before today
:param after_now: include days in current year aft... | [
"def",
"date_time_this_year",
"(",
"self",
",",
"before_now",
"=",
"True",
",",
"after_now",
"=",
"False",
",",
"tzinfo",
"=",
"None",
")",
":",
"now",
"=",
"datetime",
".",
"now",
"(",
"tzinfo",
")",
"this_year_start",
"=",
"now",
".",
"replace",
"(",
... | Gets a DateTime object for the current year.
:param before_now: include days in current year before today
:param after_now: include days in current year after today
:param tzinfo: timezone, instance of datetime.tzinfo subclass
:example DateTime('2012-04-04 11:02:02')
:return Dat... | [
"Gets",
"a",
"DateTime",
"object",
"for",
"the",
"current",
"year",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/date_time/__init__.py#L1755-L1782 | train |
joke2k/faker | faker/providers/date_time/__init__.py | Provider.date_time_this_month | def date_time_this_month(
self,
before_now=True,
after_now=False,
tzinfo=None):
"""
Gets a DateTime object for the current month.
:param before_now: include days in current month before today
:param after_now: include days in current month... | python | def date_time_this_month(
self,
before_now=True,
after_now=False,
tzinfo=None):
"""
Gets a DateTime object for the current month.
:param before_now: include days in current month before today
:param after_now: include days in current month... | [
"def",
"date_time_this_month",
"(",
"self",
",",
"before_now",
"=",
"True",
",",
"after_now",
"=",
"False",
",",
"tzinfo",
"=",
"None",
")",
":",
"now",
"=",
"datetime",
".",
"now",
"(",
"tzinfo",
")",
"this_month_start",
"=",
"now",
".",
"replace",
"(",... | Gets a DateTime object for the current month.
:param before_now: include days in current month before today
:param after_now: include days in current month after today
:param tzinfo: timezone, instance of datetime.tzinfo subclass
:example DateTime('2012-04-04 11:02:02')
:return ... | [
"Gets",
"a",
"DateTime",
"object",
"for",
"the",
"current",
"month",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/date_time/__init__.py#L1784-L1812 | train |
joke2k/faker | faker/providers/date_time/__init__.py | Provider.date_this_century | def date_this_century(self, before_today=True, after_today=False):
"""
Gets a Date object for the current century.
:param before_today: include days in current century before today
:param after_today: include days in current century after today
:example Date('2012-04-04')
... | python | def date_this_century(self, before_today=True, after_today=False):
"""
Gets a Date object for the current century.
:param before_today: include days in current century before today
:param after_today: include days in current century after today
:example Date('2012-04-04')
... | [
"def",
"date_this_century",
"(",
"self",
",",
"before_today",
"=",
"True",
",",
"after_today",
"=",
"False",
")",
":",
"today",
"=",
"date",
".",
"today",
"(",
")",
"this_century_start",
"=",
"date",
"(",
"today",
".",
"year",
"-",
"(",
"today",
".",
"... | Gets a Date object for the current century.
:param before_today: include days in current century before today
:param after_today: include days in current century after today
:example Date('2012-04-04')
:return Date | [
"Gets",
"a",
"Date",
"object",
"for",
"the",
"current",
"century",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/date_time/__init__.py#L1814-L1835 | train |
joke2k/faker | faker/providers/date_time/__init__.py | Provider.date_this_decade | def date_this_decade(self, before_today=True, after_today=False):
"""
Gets a Date object for the decade year.
:param before_today: include days in current decade before today
:param after_today: include days in current decade after today
:example Date('2012-04-04')
:retu... | python | def date_this_decade(self, before_today=True, after_today=False):
"""
Gets a Date object for the decade year.
:param before_today: include days in current decade before today
:param after_today: include days in current decade after today
:example Date('2012-04-04')
:retu... | [
"def",
"date_this_decade",
"(",
"self",
",",
"before_today",
"=",
"True",
",",
"after_today",
"=",
"False",
")",
":",
"today",
"=",
"date",
".",
"today",
"(",
")",
"this_decade_start",
"=",
"date",
"(",
"today",
".",
"year",
"-",
"(",
"today",
".",
"ye... | Gets a Date object for the decade year.
:param before_today: include days in current decade before today
:param after_today: include days in current decade after today
:example Date('2012-04-04')
:return Date | [
"Gets",
"a",
"Date",
"object",
"for",
"the",
"decade",
"year",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/date_time/__init__.py#L1837-L1857 | train |
joke2k/faker | faker/providers/date_time/__init__.py | Provider.date_this_year | def date_this_year(self, before_today=True, after_today=False):
"""
Gets a Date object for the current year.
:param before_today: include days in current year before today
:param after_today: include days in current year after today
:example Date('2012-04-04')
:return Da... | python | def date_this_year(self, before_today=True, after_today=False):
"""
Gets a Date object for the current year.
:param before_today: include days in current year before today
:param after_today: include days in current year after today
:example Date('2012-04-04')
:return Da... | [
"def",
"date_this_year",
"(",
"self",
",",
"before_today",
"=",
"True",
",",
"after_today",
"=",
"False",
")",
":",
"today",
"=",
"date",
".",
"today",
"(",
")",
"this_year_start",
"=",
"today",
".",
"replace",
"(",
"month",
"=",
"1",
",",
"day",
"=",
... | Gets a Date object for the current year.
:param before_today: include days in current year before today
:param after_today: include days in current year after today
:example Date('2012-04-04')
:return Date | [
"Gets",
"a",
"Date",
"object",
"for",
"the",
"current",
"year",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/date_time/__init__.py#L1859-L1879 | train |
joke2k/faker | faker/providers/date_time/__init__.py | Provider.date_this_month | def date_this_month(self, before_today=True, after_today=False):
"""
Gets a Date object for the current month.
:param before_today: include days in current month before today
:param after_today: include days in current month after today
:param tzinfo: timezone, instance of datet... | python | def date_this_month(self, before_today=True, after_today=False):
"""
Gets a Date object for the current month.
:param before_today: include days in current month before today
:param after_today: include days in current month after today
:param tzinfo: timezone, instance of datet... | [
"def",
"date_this_month",
"(",
"self",
",",
"before_today",
"=",
"True",
",",
"after_today",
"=",
"False",
")",
":",
"today",
"=",
"date",
".",
"today",
"(",
")",
"this_month_start",
"=",
"today",
".",
"replace",
"(",
"day",
"=",
"1",
")",
"next_month_st... | Gets a Date object for the current month.
:param before_today: include days in current month before today
:param after_today: include days in current month after today
:param tzinfo: timezone, instance of datetime.tzinfo subclass
:example DateTime('2012-04-04 11:02:02')
:return ... | [
"Gets",
"a",
"Date",
"object",
"for",
"the",
"current",
"month",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/date_time/__init__.py#L1881-L1903 | train |
joke2k/faker | faker/providers/date_time/__init__.py | Provider.time_series | def time_series(
self,
start_date='-30d',
end_date='now',
precision=None,
distrib=None,
tzinfo=None):
"""
Returns a generator yielding tuples of ``(<datetime>, <value>)``.
The data points will start at ``start_date``, and b... | python | def time_series(
self,
start_date='-30d',
end_date='now',
precision=None,
distrib=None,
tzinfo=None):
"""
Returns a generator yielding tuples of ``(<datetime>, <value>)``.
The data points will start at ``start_date``, and b... | [
"def",
"time_series",
"(",
"self",
",",
"start_date",
"=",
"'-30d'",
",",
"end_date",
"=",
"'now'",
",",
"precision",
"=",
"None",
",",
"distrib",
"=",
"None",
",",
"tzinfo",
"=",
"None",
")",
":",
"start_date",
"=",
"self",
".",
"_parse_date_time",
"(",... | Returns a generator yielding tuples of ``(<datetime>, <value>)``.
The data points will start at ``start_date``, and be at every time interval specified by
``precision``.
``distrib`` is a callable that accepts ``<datetime>`` and returns ``<value>`` | [
"Returns",
"a",
"generator",
"yielding",
"tuples",
"of",
"(",
"<datetime",
">",
"<value",
">",
")",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/date_time/__init__.py#L1905-L1941 | train |
joke2k/faker | faker/providers/date_time/__init__.py | Provider.date_of_birth | def date_of_birth(self, tzinfo=None, minimum_age=0, maximum_age=115):
"""
Generate a random date of birth represented as a Date object,
constrained by optional miminimum_age and maximum_age
parameters.
:param tzinfo Defaults to None.
:param minimum_age Defaults to 0.
... | python | def date_of_birth(self, tzinfo=None, minimum_age=0, maximum_age=115):
"""
Generate a random date of birth represented as a Date object,
constrained by optional miminimum_age and maximum_age
parameters.
:param tzinfo Defaults to None.
:param minimum_age Defaults to 0.
... | [
"def",
"date_of_birth",
"(",
"self",
",",
"tzinfo",
"=",
"None",
",",
"minimum_age",
"=",
"0",
",",
"maximum_age",
"=",
"115",
")",
":",
"if",
"not",
"isinstance",
"(",
"minimum_age",
",",
"int",
")",
":",
"raise",
"TypeError",
"(",
"\"minimum_age must be ... | Generate a random date of birth represented as a Date object,
constrained by optional miminimum_age and maximum_age
parameters.
:param tzinfo Defaults to None.
:param minimum_age Defaults to 0.
:param maximum_age Defaults to 115.
:example Date('1979-02-02')
:ret... | [
"Generate",
"a",
"random",
"date",
"of",
"birth",
"represented",
"as",
"a",
"Date",
"object",
"constrained",
"by",
"optional",
"miminimum_age",
"and",
"maximum_age",
"parameters",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/providers/date_time/__init__.py#L1971-L2010 | train |
joke2k/faker | faker/utils/datasets.py | add_dicts | def add_dicts(*args):
"""
Adds two or more dicts together. Common keys will have their values added.
For example::
>>> t1 = {'a':1, 'b':2}
>>> t2 = {'b':1, 'c':3}
>>> t3 = {'d':4}
>>> add_dicts(t1, t2, t3)
{'a': 1, 'c': 3, 'b': 3, 'd': 4}
"""
counters = [... | python | def add_dicts(*args):
"""
Adds two or more dicts together. Common keys will have their values added.
For example::
>>> t1 = {'a':1, 'b':2}
>>> t2 = {'b':1, 'c':3}
>>> t3 = {'d':4}
>>> add_dicts(t1, t2, t3)
{'a': 1, 'c': 3, 'b': 3, 'd': 4}
"""
counters = [... | [
"def",
"add_dicts",
"(",
"*",
"args",
")",
":",
"counters",
"=",
"[",
"Counter",
"(",
"arg",
")",
"for",
"arg",
"in",
"args",
"]",
"return",
"dict",
"(",
"reduce",
"(",
"operator",
".",
"add",
",",
"counters",
")",
")"
] | Adds two or more dicts together. Common keys will have their values added.
For example::
>>> t1 = {'a':1, 'b':2}
>>> t2 = {'b':1, 'c':3}
>>> t3 = {'d':4}
>>> add_dicts(t1, t2, t3)
{'a': 1, 'c': 3, 'b': 3, 'd': 4} | [
"Adds",
"two",
"or",
"more",
"dicts",
"together",
".",
"Common",
"keys",
"will",
"have",
"their",
"values",
"added",
"."
] | 965824b61132e52d92d1a6ce470396dbbe01c96c | https://github.com/joke2k/faker/blob/965824b61132e52d92d1a6ce470396dbbe01c96c/faker/utils/datasets.py#L8-L24 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.