Skip to main content

django objectid

Project description

Django-objectid

Django-objectid用于Django框架在分布式环境中高效生成不重复ID值。

依赖

  • django >= 2.2.0

安装

  • pip安装
pip install django-objectid
  • 源码安装
python setup.py install

使用

Django-objectid包括两个类,ObjectIDObjectidModel

class objectid.ObjectID(id=None)

生成、解析objectid。 参数id是一个长度为24的字符,如果是None则生成新的ObjectID实例,如果提供一个有效ID则解析这个ID为ObjectID实例。ObjectID实例有如下属性:

  • timestamp,ID中的时间戳,也就是ID创建的时间。
  • host,ID中的主机名,是实际主机名经过哈希处理后的值。
  • pid,进程ID,可能与实际值不一致。
  • count,同一进程一秒内生成的ID序号。
from objectid import ObjectID, create_objectid
# 创建ID对象
id = ObjectID()
# 获得id字符串
idstr = str(id)
# 直接创建id字符串
idstr = create_objectid()
# 解析id字符串
id = ObjectID('5fb1ee9af1d79721f0000015')

class objectid.ObjectidModel()

ObjectidModel是一个抽象类,不能单独使用,作为定义django模型类的基类。实例对象有如下属性和方法:

  • get_id_datetime(),返回id中的时间戳。

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

django_objectid-1.0.2-py3-none-any.whl (7.1 kB view details)

Uploaded Python 3

File details

Details for the file django_objectid-1.0.2-py3-none-any.whl.

File metadata

  • Download URL: django_objectid-1.0.2-py3-none-any.whl
  • Upload date:
  • Size: 7.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.9

File hashes

Hashes for django_objectid-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 e4b97d10c60680f5644cf94789a4ab4dbd26139da4e525c026e28945d1a2d0c1
MD5 57e91637d71fa459e32b5d3bd6d80bff
BLAKE2b-256 c284d34bf8529fd1d45720a092fa041e6ad3ccf0f7f0c75963573d5bb48cb2d9

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page