Metadata-Version: 2.1
Name: pids
Version: 0.1.1
Summary: A tiny Python library for generating public IDs from integers
Home-page: https://github.com/simonw/...
Author: Simon Willison
License: Apache License, Version 2.0
Platform: UNKNOWN
Description-Content-Type: text/markdown

# pids

Create short public identifiers based on integer IDs.

## Installation

    pip install pids

## Usage

    from pids import pid
    public_id = pid.from_int(1234)
    # public_id is now "gxd"
    id = pid.to_int("gxd")
    # id is now 1234


