1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
Source: shortuuid
Section: python
Priority: optional
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders:
Kouhei Maeda <mkouhei@palmtb.net>,
Martin <debacle@debian.org>,
Build-Depends:
debhelper-compat (= 13),
dh-sequence-python3,
pybuild-plugin-pyproject,
python3-all,
python3-poetry-core,
Standards-Version: 4.6.0
Rules-Requires-Root: no
Vcs-Git: https://salsa.debian.org/python-team/packages/shortuuid.git
Vcs-Browser: https://salsa.debian.org/python-team/packages/shortuuid
Homepage: https://github.com/skorokithakis/shortuuid/
X-Style: black
Package: python3-shortuuid
Architecture: all
Depends:
${misc:Depends},
${python3:Depends},
Description: generates concise, unambiguous, URL-safe UUIDs for Python 3
Often, one needs to use non-sequential IDs in places where users will see them,
but the IDs must be as concise and easy to use as possible. shortuuid solves
this problem by generating uuids using Python's built-in uuid module and then
translating them to base57 using lowercase and uppercase letters and digits,
and removing similar-looking characters such as l, 1, I, O and 0.
|