Primary Key Generator Implemented In Python
Project description
Introduction
PkGen is a pk generator implemented using Python, who’s core algorithm derives from Mongo’s generation of ObjectId.
Basic Concept of ObjectId
A BSON ObjectId is a 12-byte value consisting of a 4-byte timestamp (seconds since epoch), a 3-byte machine id, a 2-byte process id(PID) and a 3-byte counter. Note tha the timestamp and counter fields must be stored big endian unlike the rest of BSON.
Install
2 ways to install PkGen:
clone the repo to your machine, run setup.py
$ cd ~ && git@github.com:streethacker/pkgen.git
$ python setup.py install
using pip
$ pip install -e git+https://github.com/streethacker/pkgen@0.1#egg=pkgen
Start
>>> from pkgen import PkGen
>>> pkg = PkGen()
>>> pk = pkg.pkgen()
>>> pk.pk
'5735ae95c14e2435aa000000'
>>>
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
pkgen-0.1.tar.gz
(2.5 kB
view details)
File details
Details for the file pkgen-0.1.tar.gz
.
File metadata
- Download URL: pkgen-0.1.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fea91c28f07be9c9f6cc502161629cbbe22def42c3e80a14b81b331d4f7ac1a2 |
|
MD5 | 93797a9b835ee0651e013c021912cad2 |
|
BLAKE2b-256 | a7e5a5fcb2de2f8726b748d3ce8f48ab9954fb458de403788f0e6e2535daa809 |