Giter Club home page Giter Club logo

python-name-generator's Introduction

Python names generator.

Summary

1

Requires module "names"

pip install names

Supported By Names Module :

Male Names Female Names
Create random male names Create random female names
Create random male first names Create 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:

import names

for i in range(10):
    print(names.get_full_name())

3

Create random male names

for i in range(10):
    rand_name = names.get_full_name(gender='male')
    print(rand_name)

4

Create random female names

for i in range(10):
    rand_name = names.get_full_name(gender='female')
    print(rand_name)

5

Create random male first names

for i in range(10):
        rand_name = names.get_first_name(gender='male')
        print(rand_name)

6

Create random female first names

for i in range(10):
    rand_name = names.get_first_name(gender='female')
    print(rand_name)

7

Create random last names

for i in range(10):
    rand_name = names.get_last_name()
    print(rand_name)

Made by natrix

Support Us Please

Star Fork
Star Fork

python-name-generator's People

Contributors

natrixdev avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Forkers

rip4ldi 5l1v3r1

python-name-generator's Issues

No Linux Build

AttributeError: module 'platform' has no attribute 'linux_distribution' <----- Error in Terminal

Hey can you make a build for linux .

-- Thanks miloszlip

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.