getname Library

0.1.1 · active · verified Fri Apr 17

The `getname` library, currently at version 0.1.1, provides simple functions to retrieve popular names for categories such as cats, dogs, superheroes, and supervillains. It is designed for straightforward use cases requiring quick access to lists of themed names. The library has an infrequent release cadence, with the last update in January 2023.

Common errors

Warnings

Install

Imports

Quickstart

This quickstart demonstrates how to import the `getname` library and call its main functions to retrieve a single random name from each category.

import getname

print("Random Cat Name:", getname.cat())
print("Random Dog Name:", getname.dog())
print("Random Superhero Name:", getname.superhero())
print("Random Supervillain Name:", getname.supervillain())

view raw JSON →