Names

0.3.0 · maintenance · verified Tue Apr 14

The 'names' library is a simple Python utility designed to generate random first, last, and full names. It currently stands at version 0.3.0, with its last PyPI release in 2013 and last GitHub activity in 2018, indicating a low-to-no active development cadence. It primarily serves for quick generation of placeholder names.

Warnings

Install

Imports

Quickstart

Demonstrates how to import the `names` library and use its primary functions to generate a random first name, last name, and full name.

import names

first_name = names.get_first_name()
last_name = names.get_last_name()
full_name = names.get_full_name()

print(f"Random First Name: {first_name}")
print(f"Random Last Name: {last_name}")
print(f"Random Full Name: {full_name}")

view raw JSON →