Metadata-Version: 1.1
Name: py-arc-identifiers
Version: 0.1
Summary: generate Arc UUIDs in python
Home-page: https://github.com/MPMedia/py-arc-identifiers
Author: patharer
Author-email: rohan.pathare@washpost.com
License: MIT
Download-URL: https://github.com/WPMedia/py-arc-identifiers/tarball/0.2.4
Description: # py-arc-identifiers
        Port of https://github.com/WPMedia/arc-identifiers to Python
        
        An ArcUUID is guaranteed to be:
        * universally unique
        * exactly 26 bytes long
        * URL-safe (no need to explicitly escape any characters)
        
        Create ArcUUIDs like you would python lib UUIDs:
        ```
            my_id = ArcUUID.random_arc_uuid();
        
            print("My ID, as a string is: " + str(my_id));
        ```
        
        If you have a String (e.g. from a database column) and wish to create an ArcUUID, use the .from_string( ) method, as you would with python's UUID
        ```
            primaryKey = // e.g. db.collection.find(0);
        
            my_id = ArcUUID.from_string(primaryKey);
        
        ```
        
Platform: UNKNOWN
