當前位置: 首頁>>代碼示例>>Python>>正文


Python names.get_last_name方法代碼示例

本文整理匯總了Python中names.get_last_name方法的典型用法代碼示例。如果您正苦於以下問題:Python names.get_last_name方法的具體用法?Python names.get_last_name怎麽用?Python names.get_last_name使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在names的用法示例。


在下文中一共展示了names.get_last_name方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: generate

# 需要導入模塊: import names [as 別名]
# 或者: from names import get_last_name [as 別名]
def generate(remotePath: Path, outDir: Path):
        localName = f"{names.get_first_name()}{names.get_last_name()}"
        creationTime = datetime.datetime.now()

        index = 2
        suffix = ""

        while True:
            if not (outDir / f"{localName}{suffix}").exists():
                break
            else:
                suffix = f"_{index}"
                index += 1

        localName += suffix

        return FileMapping(remotePath, outDir / localName, creationTime, "") 
開發者ID:GoSecure,項目名稱:pyrdp,代碼行數:19,代碼來源:FileMapping.py

示例2: crea_sede

# 需要導入模塊: import names [as 別名]
# 或者: from names import get_last_name [as 別名]
def crea_sede(presidente=None, estensione=LOCALE, genitore=None,
              locazione=None):
    ESTENSIONE_DICT = dict(ESTENSIONE)
    locazione = locazione or crea_locazione()
    s = Sede(
        nome="Com. " + ESTENSIONE_DICT[estensione] + " " + names.get_last_name(),
        tipo=Sede.COMITATO,
        estensione=estensione,
        genitore=genitore,
        telefono='+3902020202',
        email='comitato@prova.it',
        codice_fiscale='01234567891',
        partita_iva='01234567891',
        locazione=locazione
    )
    s.save()
    if presidente is not None:
        d = Delega(
            inizio="1980-12-10",
            persona=presidente,
            tipo=PRESIDENTE,
            oggetto=s
        )
        d.save()
    return s 
開發者ID:CroceRossaItaliana,項目名稱:jorvik,代碼行數:27,代碼來源:utils_tests.py

示例3: test_new_registered_gender_is_set

# 需要導入模塊: import names [as 別名]
# 或者: from names import get_last_name [as 別名]
def test_new_registered_gender_is_set(self):
        genere_list = ['M', 'F']
        for genere in genere_list:
            nome = names.get_first_name()
            cognome = names.get_last_name()
            nascita = datetime(random.randint(1960, 1990),
                               random.randint(1, 12),
                               random.randint(1, 28))
            p = Persona(
                nome=nome,
                cognome=cognome,
                data_nascita=nascita,
                codice_fiscale=codicefiscale.build(nome, cognome, nascita, genere, 'D969'),
                comune_nascita=random.sample(COMUNI.keys(), 1)[0],
                indirizzo_residenza='Via Prova, 34',
                comune_residenza=random.sample(COMUNI.keys(), 1)[0],
                provincia_residenza='EE',
                cap_residenza='00100',)
            p.save()
            self.assertEquals(p.genere_codice_fiscale, genere)
            self.assertEquals(p.genere, genere) 
開發者ID:CroceRossaItaliana,項目名稱:jorvik,代碼行數:23,代碼來源:test_signup.py

示例4: gen_last_name

# 需要導入模塊: import names [as 別名]
# 或者: from names import get_last_name [as 別名]
def gen_last_name():
    return names.get_last_name() 
開發者ID:rg3915,項目名稱:orcamentos,代碼行數:4,代碼來源:gen_names.py

示例5: codice_fiscale_persona

# 需要導入模塊: import names [as 別名]
# 或者: from names import get_last_name [as 別名]
def codice_fiscale_persona(persona):
    from base.comuni import COMUNI
    try:
        codice_comune = COMUNI[persona.comune_nascita.lower()]
    except KeyError:
        codice_comune = 'D000'

    try:
        return build(persona.cognome, persona.nome, persona.data_nascita, persona.genere, codice_comune)
    except:
        # Dati personali imcompatibili per creare un codice fiscale corretto.
        return build(names.get_last_name(), names.get_first_name(), persona.data_nascita,
                     persona.genere, codice_comune) 
開發者ID:CroceRossaItaliana,項目名稱:jorvik,代碼行數:15,代碼來源:utils_tests.py

示例6: crea_persona

# 需要導入模塊: import names [as 別名]
# 或者: from names import get_last_name [as 別名]
def crea_persona(nome=None, cognome=None):
    nome = names.get_first_name() if not nome else nome
    cognome = names.get_last_name() if not cognome else cognome
    p = Persona.objects.create(
        nome=nome,
        cognome=cognome,
        codice_fiscale=codice_fiscale(),
        data_nascita="{}-{}-{}".format(random.randint(1960, 1990), random.randint(1, 12), random.randint(1, 28))
    )
    p.refresh_from_db()
    return p 
開發者ID:CroceRossaItaliana,項目名稱:jorvik,代碼行數:13,代碼來源:utils_tests.py


注:本文中的names.get_last_name方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。