DEV Community

Cover image for Build A Random Name Generator Using Python
Hillary Nyakundi
Hillary Nyakundi

Posted on

Build A Random Name Generator Using Python

How many times have you found yourself trying to figure out which name you should use because you would not want to publicly use you name in website or app registration? If it's many then you surely should try building an app that can randomly give you different names to use when in need.

This app is written in python,

What you will need

  • A code Editor (preferred pycharm)
  • A environment and you will be good to go first you will have to import two packages:

Here is the code snippet:

import requests
from random import randint
url = 'https://svnweb.freebsd.org/csrg/share/dict/propernames?revision=61766&view=co'

Enter fullscreen mode Exit fullscreen mode

For the whole code and explanation read the article at my blog page:

Random Name Generator

Follow me

Twitter

GitHub

YouTube

More Blog

Top comments (2)

Collapse
 
furtleo profile image
Leonardo Furtado

Why don't you post the whole content here?
a

Collapse
 
larymak profile image
Hillary Nyakundi

I did leave a link to both GitHub and blog where there is explanation in detail