Skip to content

Latest commit

History

15 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

Python names generator.

Summary

1

Requires module "names"

pip install names

Supported By Names Module :

Male NamesFemale Names
Create random male namesCreate random female names
Create random male first namesCreate random female first names
Neutral Names
Create random last names
Create random names

Usages:

2

Create random names with python

Then to create random names just do:

importnamesforiinrange(10):
print(names.get_full_name())

3

Create random male names

foriinrange(10):
rand_name=names.get_full_name(gender='male')
print(rand_name)

4

Create random female names

foriinrange(10):
rand_name=names.get_full_name(gender='female')
print(rand_name)

5

Create random male first names

foriinrange(10):
rand_name=names.get_first_name(gender='male')
print(rand_name)

6

Create random female first names

foriinrange(10):
rand_name=names.get_first_name(gender='female')
print(rand_name)

7

Create random last names

foriinrange(10):
rand_name=names.get_last_name()
print(rand_name)

Made by natrix

Support Us Please

StarFork
StarFork

Releases

Packages

Contributors

Languages