Metadata-Version: 1.1
Name: cyksuid
Version: 1.0.2
Summary: Cython implementation of ksuid
Home-page: https://github.com/timonwong/cyksuid
Author: Timon Wong
Author-email: timon86.wang@gmail.com
License: BSD
Description: CyKSUID
        =======
        
        Cython implementation of KSUID_ (K-Sortable Globally Unique IDs).
        
        .. _KSUID: https://github.com/segmentio/ksuid
        
        LICENSE
        -------
        
        New BSD. See `License File <https://github.com/timonwong/cyksuid/blob/master/LICENSE>`__.
        
        Install
        -------
        
        ``cyksuid`` is on the Python Package Index (`PyPI <https://pypi.org/project/cyksuid>`__):
        
        ::
        
            pip install cyksuid
        
        
        Dependencies
        ------------
        
        ``cyksuid`` supports Python 2.6+ and Python 3.3+ with a common codebase.
        It is developed in Cython, but requires no dependecies other than CPython
        and a C compiler.
        
        Sample Usage
        ------------
        
        .. code-block:: python
        
            from cyksuid import ksuid
        
            uid = ksuid.ksuid()
        
            uid.bytes       # b'\x05\xe1\x035\xa8\xbe\xe2\xb5\x0e\x08\xd0\x05\x01L\xe0;\x9a\xed\xc7\xd0'
            uid.hex         # 05e10335a8bee2b50e08d005014ce03b9aedc7d0
            uid.datetime    # datetime.datetime(2017, 6, 28, 6, 48, 21)
            uid.encoded     # b'0q0TPwNTFKyzJKAX1ZRh7rxXiim'
        
Keywords: ksuid
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Cython
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
