murmurhash3


Namemurmurhash3 JSON
Version 2.3.5 PyPI version JSON
download
home_pagehttp://packages.python.org/murmurhash3
Summarya library for MurmurHash3, a set of fast and robust hash functions
upload_time2015-02-01 22:49:58
maintainerNone
docs_urlNone
authorV G
requires_pythonNone
licensePublic Domain
keywords hash murmurhash
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            murmurhash3
===========

:Version: 2.3.4
:Download: http://pypi.python.org/pypi/murmurhash3/
:Source: http://github.com/veegee/mmh3
:Keywords: hash, MurmurHash

murmurhash3 is a Python library for MurmurHash (MurmurHash3), a set of fast and
robust hash functions. This library is a Python extension module written in C.

Supports Python >= 3.2.0 on all platforms.


Usage
=====

Install::

    pip install murmurhash3

Usage::

    pip install murmurhash3

    >>> import mmh3
    >>> mmh3.hash('foo')  # 32-bit signed int
    -156908512
    >>> mmh3.hash64('foo')  # two 64-bit signed ints (the 128-bit hash sliced in half)
    (-2129773440516405919, 9128664383759220103)
    >>> mmh3.hash128('foo')  # 128-bit signed int
    168394135621993849475852668931176482145
    >>> mmh3.hash_bytes('foo')  # 128-bit value as bytes
    'aE\xf5\x01W\x86q\xe2\x87}\xba+\xe4\x87\xaf~'
    >>> mmh3.hash('foo', 42)  # uses 42 for its seed
    -1322301282


License
=======

Public Domain


Authors
=======

MurmurHash3 was created by Austin Appleby

- http://code.google.com/p/smhasher/
            

Raw data

            {
    "_id": null,
    "home_page": "http://packages.python.org/murmurhash3",
    "name": "murmurhash3",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "hash,MurmurHash",
    "author": "V G",
    "author_email": "veegee@veegee.org",
    "download_url": "https://files.pythonhosted.org/packages/b5/f4/1f9c4851667a2541bd151b8d9efef707495816274fada365fa6a31085a32/murmurhash3-2.3.5.tar.gz",
    "platform": "UNKNOWN",
    "description": "murmurhash3\n===========\n\n:Version: 2.3.4\n:Download: http://pypi.python.org/pypi/murmurhash3/\n:Source: http://github.com/veegee/mmh3\n:Keywords: hash, MurmurHash\n\nmurmurhash3 is a Python library for MurmurHash (MurmurHash3), a set of fast and\nrobust hash functions. This library is a Python extension module written in C.\n\nSupports Python >= 3.2.0 on all platforms.\n\n\nUsage\n=====\n\nInstall::\n\n    pip install murmurhash3\n\nUsage::\n\n    pip install murmurhash3\n\n    >>> import mmh3\n    >>> mmh3.hash('foo')  # 32-bit signed int\n    -156908512\n    >>> mmh3.hash64('foo')  # two 64-bit signed ints (the 128-bit hash sliced in half)\n    (-2129773440516405919, 9128664383759220103)\n    >>> mmh3.hash128('foo')  # 128-bit signed int\n    168394135621993849475852668931176482145\n    >>> mmh3.hash_bytes('foo')  # 128-bit value as bytes\n    'aE\\xf5\\x01W\\x86q\\xe2\\x87}\\xba+\\xe4\\x87\\xaf~'\n    >>> mmh3.hash('foo', 42)  # uses 42 for its seed\n    -1322301282\n\n\nLicense\n=======\n\nPublic Domain\n\n\nAuthors\n=======\n\nMurmurHash3 was created by Austin Appleby\n\n- http://code.google.com/p/smhasher/",
    "bugtrack_url": null,
    "license": "Public Domain",
    "summary": "a library for MurmurHash3, a set of fast and robust hash functions",
    "version": "2.3.5",
    "project_urls": {
        "Download": "UNKNOWN",
        "Homepage": "http://packages.python.org/murmurhash3"
    },
    "split_keywords": [
        "hash",
        "murmurhash"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b5f41f9c4851667a2541bd151b8d9efef707495816274fada365fa6a31085a32",
                "md5": "3fc68fe48bd2dbccdb9853f22b28e8de",
                "sha256": "f53387d1425a165427b55f1938355e5c05beecbcf180ef1738bd892082f6bfbd"
            },
            "downloads": -1,
            "filename": "murmurhash3-2.3.5.tar.gz",
            "has_sig": false,
            "md5_digest": "3fc68fe48bd2dbccdb9853f22b28e8de",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 3773,
            "upload_time": "2015-02-01T22:49:58",
            "upload_time_iso_8601": "2015-02-01T22:49:58.056997Z",
            "url": "https://files.pythonhosted.org/packages/b5/f4/1f9c4851667a2541bd151b8d9efef707495816274fada365fa6a31085a32/murmurhash3-2.3.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2015-02-01 22:49:58",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "murmurhash3"
}
        
V G
Elapsed time: 0.06552s