You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

ezname

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ezname

A simple tool for generating random, memorable names - better than UUIDs

0.1.3
pipPyPI
Maintainers
1

ezname

A simple tool for generating random, memorable names - better than UUIDs

Overview

ezname is a Python tool that generates random, human-readable names that are much more memorable than UUIDs or timestamps. Use them for experiments, temporary resources, projects, or anywhere you need a distinctive identifier.

Installation

pip install ezname

Usage

  • Python
import ezname

ezname.generate()
# happy-friday

ezname.generate(prefix="run", suffix="v1.0", delimiter="_")
# run_sleepy_penguin_v1.0

ezname.generate(as_tuple=True)
# ("bad", "cop")

ezname.generate_batch(3)
# ['desirable-none', 'old-code', 'troublesome-rod']
  • Terminal
$ ezname
>> witty-calculator

Features

  • Generates names that are easy to pronounce and understand
  • Provides customizable naming options with prefixes, suffixes, and delimiters
  • Supports tuple output format for structured naming

Word Selection

The vocabulary used in ezname is carefully curated to include words that are:

  • Easy to pronounce and recognize across different cultures
  • Simple enough to be understood by non-native English speakers

We would like to acknowledge the vocabulary list from Dr. Shin Ishikawa, Kobe University, which helped inform our word selection process.

License

MIT License

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts