Human readable IDs, in Python
Project description
Human ID
A simple library for generating human IDs like look-dead-game-story
or get-nice-office-side
.
Install with pip install human-id
Usage:
from human_id import generate_id
# Simple: "appear-hard-idea-case"
generate_id()
# Custom separator: "do,past,job,number"
generate_id(separator=",")
# More words: "say-may-ask-traditional-power-week"
generate_id(word_count=10)
# Custom seed - the same UUID will produce the same ID.
import uuid
generate_id(seed=uuid.uuid4())
CLI
This module also comes with a small command line tool: humanid-gen
❯ humanid-gen --help
Usage: humanid-gen [OPTIONS]
Generate human readable IDs
Options:
--words INTEGER Number of words
--sep TEXT Separator
--seed TEXT Seed to use
--count INTEGER Number of IDs to generate
--help Show this message and exit.
Implementation
This library contains 100 of the most common English nouns, adjectives and verbs, and will
generate a phrase containing several of each type, in the order verb, adjective, noun
.
The most common words where chosen because they are typically shorter and simpler to read or type, which is a key property of human readable IDs.
By default the ID will contain 4 words, which means there are 300^4
possible IDs (8,100,000,000). If your
use case requires more IDs then you can up the number of words at the expense of the readability factor. To
have the same number of possible IDs as UUIDs you require 15 words:
may-hold-come-foreign-low-white-cold-team-point-study-others-home-service-body-child
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file human_id-0.2.0.tar.gz
.
File metadata
- Download URL: human_id-0.2.0.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.10.2 Darwin/21.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 19768373c96685f8dcd35da7f747e37e7483bb9c2c5383612a2a072d90542422 |
|
MD5 | d126670d9946a06fae5897234f8c7084 |
|
BLAKE2b-256 | 4a59ef55a878f44a339b401b3d4c4d83b145f99e200abeddf61359a24dd3c40d |
File details
Details for the file human_id-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: human_id-0.2.0-py3-none-any.whl
- Upload date:
- Size: 4.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.10.2 Darwin/21.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d2c7f0fea0244114a3a6e9b30343733515522031c6948bfdf3e0294a7d76335e |
|
MD5 | 3d72ccf090ac68989a249aa67bebbac8 |
|
BLAKE2b-256 | a3fbee29329b25ffea61994b98f72f4efdefcca5703de4d9d37d89871b7ddc53 |