Skip to main content

Python driver for MongoDB <http://www.mongodb.org>

Project description

Info:

See the mongo site for more information. See github for the latest source.

Author:

Mike Dirolf

Maintainer:

Bernie Hackett <bernie@10gen.com>

About

The PyMongo distribution contains tools for interacting with MongoDB database from Python. The bson package is an implementation of the BSON format for Python. The pymongo package is a native Python driver for MongoDB. The gridfs package is a gridfs implementation on top of pymongo.

Issues / Questions / Feedback

Any issues with, questions about, or feedback for PyMongo should be sent to the mongodb-user list on Google Groups. For confirmed issues or feature requests, open a case on jira. Please do not e-mail any of the PyMongo developers directly with issues or questions - you’re more likely to get an answer on the list.

Installation

If you have distribute installed you should be able to do easy_install pymongo to install PyMongo. Otherwise you can download the project source and do python setup.py install to install.

Dependencies

The PyMongo distribution is supported and tested on Python 2.x (where x >= 4) and Python 3.x (where x >= 1). PyMongo versions <= 1.3 also supported Python 2.3, but that is no longer supported.

Additional dependencies are:

  • (to generate documentation) sphinx

  • (to auto-discover tests) nose

Examples

Here’s a basic example (for more see the examples section of the docs):

>>> import pymongo
>>> client = pymongo.MongoClient("localhost", 27017)
>>> db = client.test
>>> db.name
u'test'
>>> db.my_collection
Collection(Database(MongoClient('localhost', 27017), u'test'), u'my_collection')
>>> db.my_collection.save({"x": 10})
ObjectId('4aba15ebe23f6b53b0000000')
>>> db.my_collection.save({"x": 8})
ObjectId('4aba160ee23f6b543e000000')
>>> db.my_collection.save({"x": 11})
ObjectId('4aba160ee23f6b543e000002')
>>> db.my_collection.find_one()
{u'x': 10, u'_id': ObjectId('4aba15ebe23f6b53b0000000')}
>>> for item in db.my_collection.find():
...     print item["x"]
...
10
8
11
>>> db.my_collection.create_index("x")
u'x_1'
>>> for item in db.my_collection.find().sort("x", pymongo.ASCENDING):
...     print item["x"]
...
8
10
11
>>> [item["x"] for item in db.my_collection.find().limit(2).skip(1)]
[8, 11]

Documentation

You will need sphinx installed to generate the documentation. Documentation can be generated by running python setup.py doc. Generated documentation can be found in the doc/build/html/ directory.

Testing

The easiest way to run the tests is to install nose (easy_install nose) and run nosetests or python setup.py test in the root of the distribution. Tests are located in the test/ directory.

Project details


Release history Release notifications | RSS feed

This version

2.5.2

Download files

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

Source Distribution

pymongo-2.5.2.tar.gz (303.2 kB view details)

Uploaded Source

Built Distributions

pymongo-2.5.2.win-amd64-py3.3.exe (394.6 kB view details)

Uploaded Source

pymongo-2.5.2.win-amd64-py3.2.exe (396.7 kB view details)

Uploaded Source

pymongo-2.5.2.win-amd64-py2.7.exe (395.5 kB view details)

Uploaded Source

pymongo-2.5.2.win-amd64-py2.6.exe (396.0 kB view details)

Uploaded Source

pymongo-2.5.2.win32-py3.3.exe (361.9 kB view details)

Uploaded Source

pymongo-2.5.2.win32-py3.2.exe (366.9 kB view details)

Uploaded Source

pymongo-2.5.2.win32-py2.7.exe (366.7 kB view details)

Uploaded Source

pymongo-2.5.2.win32-py2.6.exe (367.2 kB view details)

Uploaded Source

pymongo-2.5.2.win32-py2.5.exe (233.0 kB view details)

Uploaded Source

pymongo-2.5.2.win32-py2.4.exe (233.0 kB view details)

Uploaded Source

pymongo-2.5.2-py3.3-win-amd64.egg (344.7 kB view details)

Uploaded Source

pymongo-2.5.2-py3.3-win32.egg (343.1 kB view details)

Uploaded Source

pymongo-2.5.2-py3.3-macosx-10.6-intel.egg (364.6 kB view details)

Uploaded Source

pymongo-2.5.2-py3.3-macosx-10.5-fat.egg (365.8 kB view details)

Uploaded Source

pymongo-2.5.2-py3.2-win-amd64.egg (338.9 kB view details)

Uploaded Source

pymongo-2.5.2-py3.2-win32.egg (337.1 kB view details)

Uploaded Source

pymongo-2.5.2-py3.2-macosx-10.6-intel.egg (358.6 kB view details)

Uploaded Source

pymongo-2.5.2-py3.2-macosx-10.3-fat.egg (359.4 kB view details)

Uploaded Source

pymongo-2.5.2-py2.7-win-amd64.egg (333.4 kB view details)

Uploaded Source

pymongo-2.5.2-py2.7-win32.egg (332.1 kB view details)

Uploaded Source

pymongo-2.5.2-py2.7-macosx-10.8-intel.egg (350.3 kB view details)

Uploaded Source

pymongo-2.5.2-py2.7-macosx-10.7-intel.egg (350.3 kB view details)

Uploaded Source

pymongo-2.5.2-py2.7-macosx-10.6-intel.egg (353.5 kB view details)

Uploaded Source

pymongo-2.5.2-py2.6-win-amd64.egg (334.6 kB view details)

Uploaded Source

pymongo-2.5.2-py2.6-win32.egg (333.2 kB view details)

Uploaded Source

pymongo-2.5.2-py2.6-macosx-10.8-intel.egg (350.9 kB view details)

Uploaded Source

pymongo-2.5.2-py2.6-macosx-10.7-intel.egg (350.9 kB view details)

Uploaded Source

pymongo-2.5.2-py2.6-macosx-10.6-universal.egg (370.7 kB view details)

Uploaded Source

pymongo-2.5.2-py2.5-win32.egg (334.0 kB view details)

Uploaded Source

pymongo-2.5.2-py2.5-macosx-10.8-x86_64.egg (332.4 kB view details)

Uploaded Source

pymongo-2.5.2-py2.5-macosx-10.7-x86_64.egg (332.2 kB view details)

Uploaded Source

pymongo-2.5.2-py2.5-macosx-10.6-i386.egg (351.8 kB view details)

Uploaded Source

pymongo-2.5.2-py2.4-win32.egg (337.2 kB view details)

Uploaded Source

File details

Details for the file pymongo-2.5.2.tar.gz.

File metadata

  • Download URL: pymongo-2.5.2.tar.gz
  • Upload date:
  • Size: 303.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pymongo-2.5.2.tar.gz
Algorithm Hash digest
SHA256 84ac1da67d0dabc711fa8259324d4e94b26a85411bcf0c12dc80a427d9f93ecc
MD5 d1ada91f0ec474534eab88429fb6ce5e
BLAKE2b-256 c8518ac9b4a1af858e0ff57508a911e2137e62b09e6d1c99c30bb8fe093ec7bd

See more details on using hashes here.

File details

Details for the file pymongo-2.5.2.win-amd64-py3.3.exe.

File metadata

File hashes

Hashes for pymongo-2.5.2.win-amd64-py3.3.exe
Algorithm Hash digest
SHA256 724cf12bfb99d236583b4a2c4e42356750a735cd31749be0ac25f066f4b09983
MD5 2ad2bbce6c34a2b6c5a2b1a1f519d37e
BLAKE2b-256 562a89ab422f3a21685762613510addc2a2ca395d5081d854752c15950b111d1

See more details on using hashes here.

File details

Details for the file pymongo-2.5.2.win-amd64-py3.2.exe.

File metadata

File hashes

Hashes for pymongo-2.5.2.win-amd64-py3.2.exe
Algorithm Hash digest
SHA256 08082167b09f2ae2b50e8896202bbf1dd03f19fc33cd88ab91df440f439912cd
MD5 4f1139290686dbf18927224675186718
BLAKE2b-256 0ee36e28fe7ed1920d52ddb8a62fbdfced5f42a1f33e1ae521b1dd2404605c88

See more details on using hashes here.

File details

Details for the file pymongo-2.5.2.win-amd64-py2.7.exe.

File metadata

File hashes

Hashes for pymongo-2.5.2.win-amd64-py2.7.exe
Algorithm Hash digest
SHA256 84d82ecff604794b9474e743d6bf02c4ec58e2cd246d031620c79f886e303ae2
MD5 9a6eac8ab14659f516f4d9ff7791e82e
BLAKE2b-256 d30e8ebfcfd83917ed1f97601be43637d0feee0da723b592a3fc284375f33a57

See more details on using hashes here.

File details

Details for the file pymongo-2.5.2.win-amd64-py2.6.exe.

File metadata

File hashes

Hashes for pymongo-2.5.2.win-amd64-py2.6.exe
Algorithm Hash digest
SHA256 6e89dac2d9201ad1aefa01ac49d935a52a7e868ee4a46cada3c86b09c5b7eed3
MD5 0aecd779b4047188b2aecddb3aee2b40
BLAKE2b-256 80468d8c7d48fd5a0bdd72d36fb578fbc73ce066c41ea5ac20d014670db61e25

See more details on using hashes here.

File details

Details for the file pymongo-2.5.2.win32-py3.3.exe.

File metadata

File hashes

Hashes for pymongo-2.5.2.win32-py3.3.exe
Algorithm Hash digest
SHA256 8434312fc866311b64c4fa5605ad25a1fc6a71cbdbe486b1aa341357f76288c2
MD5 6e3af163efcd59fce4ebe54dfbdb653b
BLAKE2b-256 c52bdd410f2906f9852001cb03557fc3fac2c80595c6c43178fd1c2909964b64

See more details on using hashes here.

File details

Details for the file pymongo-2.5.2.win32-py3.2.exe.

File metadata

File hashes

Hashes for pymongo-2.5.2.win32-py3.2.exe
Algorithm Hash digest
SHA256 8900324b5fa6431c27b39f860085b4f3de0caa832abab897a5c282cb7461625c
MD5 3ce8cf36066ea097d810b70b0fe963f0
BLAKE2b-256 eda6f26e2b61c063b08cb7d23a887e67e50f3b862cbf9909e003c2ff7feda4dd

See more details on using hashes here.

File details

Details for the file pymongo-2.5.2.win32-py2.7.exe.

File metadata

File hashes

Hashes for pymongo-2.5.2.win32-py2.7.exe
Algorithm Hash digest
SHA256 782d7e61192e7219d5bde9a2e9b89cf7d61a20df15ba676d71ba19f23173a469
MD5 5c522877b902817fa14349b0430d94e6
BLAKE2b-256 ff80880b581b51d9e824aeffd6c28e85a4b5ab384d6358a96638cb240798ec46

See more details on using hashes here.

File details

Details for the file pymongo-2.5.2.win32-py2.6.exe.

File metadata

File hashes

Hashes for pymongo-2.5.2.win32-py2.6.exe
Algorithm Hash digest
SHA256 6feb8863d9a4ee40b382f839943b6a2c54f73cab22c8bd05c8ad55f3f39a3cc2
MD5 dcf55c75ada351bd74de98b94e1621e3
BLAKE2b-256 b7b566ddb63cde0fd3e4b7553cacd9cfc22d93f0cb8c44ef3b3561ff7fa66a57

See more details on using hashes here.

File details

Details for the file pymongo-2.5.2.win32-py2.5.exe.

File metadata

File hashes

Hashes for pymongo-2.5.2.win32-py2.5.exe
Algorithm Hash digest
SHA256 1a434b106696be0eaf38085e5dfcdb981c26e3c6ca5c851935ccb3531e033f39
MD5 3a48476b00b0b6b68de16022156ef8db
BLAKE2b-256 35a1c70cc36185e58ae5d114fc4486312f553cc5aad5fd74af7e7ce80c84ab91

See more details on using hashes here.

File details

Details for the file pymongo-2.5.2.win32-py2.4.exe.

File metadata

File hashes

Hashes for pymongo-2.5.2.win32-py2.4.exe
Algorithm Hash digest
SHA256 ab66e0ab580b214d26a9611a4667bcebc634841d3a36109d3d5e1c0c417f4bf5
MD5 49e9cb7340f39ad4b272c7aa3aaaf16d
BLAKE2b-256 1f67b69c6c5e15302cb2e11db1ef89c87cc414195e5767db6efa3029dfcdac2e

See more details on using hashes here.

File details

Details for the file pymongo-2.5.2-py3.3-win-amd64.egg.

File metadata

File hashes

Hashes for pymongo-2.5.2-py3.3-win-amd64.egg
Algorithm Hash digest
SHA256 479cef94cbee2b4a96baed33d2b13b99f0bd9a7f9b2b29ea41edce3bb7cd43ba
MD5 98b9252a3c8f2714c5ff125ea3af21cb
BLAKE2b-256 2164c374889c0acd21768cdf91d556ec0fab5de8981ad1396fd4395f164c9080

See more details on using hashes here.

File details

Details for the file pymongo-2.5.2-py3.3-win32.egg.

File metadata

File hashes

Hashes for pymongo-2.5.2-py3.3-win32.egg
Algorithm Hash digest
SHA256 2772f70fcf20e6c8f1a5a6f2e33dbe20a1413e57a5ff17b20d0a44f5b9a89068
MD5 55b59372090a1049cf22be87d68700bb
BLAKE2b-256 6b058f46212fb91666f2c11ab7c150e34612e287a4892151a056a1477a319382

See more details on using hashes here.

File details

Details for the file pymongo-2.5.2-py3.3-macosx-10.6-intel.egg.

File metadata

File hashes

Hashes for pymongo-2.5.2-py3.3-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 ceed54514025c1a431d41ec74d31b8749bd7604f9bbd6f4e8efe0672fe2bffe8
MD5 64f47f23497e268748e74964c8ff518e
BLAKE2b-256 4ef27328dce4dca57fb31fc17f79d1e30add1690275eacaa911089dcc7b805f1

See more details on using hashes here.

File details

Details for the file pymongo-2.5.2-py3.3-macosx-10.5-fat.egg.

File metadata

File hashes

Hashes for pymongo-2.5.2-py3.3-macosx-10.5-fat.egg
Algorithm Hash digest
SHA256 5d980cad2f139704d7e8c2d413c757876471a993344065aac9794d79bd7a6dca
MD5 6e89ed36cf6126f4dcaa430a43d1ace6
BLAKE2b-256 f55a722572692ce140591181d563bdf9cc63c1643cf16ded90df770039629864

See more details on using hashes here.

File details

Details for the file pymongo-2.5.2-py3.2-win-amd64.egg.

File metadata

File hashes

Hashes for pymongo-2.5.2-py3.2-win-amd64.egg
Algorithm Hash digest
SHA256 3d70a3fb6c0b897319b9c87de5f4199b57c9068eac271430c72c80e96a442776
MD5 b603d645ca71968f88c2f41f24c31008
BLAKE2b-256 f0a0f90afb7ab24eef452072ef75e33562f82d20df44a90928b48f55e0b05592

See more details on using hashes here.

File details

Details for the file pymongo-2.5.2-py3.2-win32.egg.

File metadata

File hashes

Hashes for pymongo-2.5.2-py3.2-win32.egg
Algorithm Hash digest
SHA256 a717742a3cfd1ad6e4371ddfffcb3624bc8a320f744a2da2da1395a5dc32b5ba
MD5 977d88a1e6244e07955c179f059d1520
BLAKE2b-256 3b05809f08c7991c9235e80c917b78fc36eaa41bed8d9c868e157ab30cdec5ed

See more details on using hashes here.

File details

Details for the file pymongo-2.5.2-py3.2-macosx-10.6-intel.egg.

File metadata

File hashes

Hashes for pymongo-2.5.2-py3.2-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 f723255e82e9238e9c8fb931baf0dc0df885ecc1dbca183b3499194d69818027
MD5 ae7391be5d29664f6bdc742249bcf913
BLAKE2b-256 550d45202fd99554b098cefb5f1890e7c21eac2d4f2c81b427a791cdc2f6b5d0

See more details on using hashes here.

File details

Details for the file pymongo-2.5.2-py3.2-macosx-10.3-fat.egg.

File metadata

File hashes

Hashes for pymongo-2.5.2-py3.2-macosx-10.3-fat.egg
Algorithm Hash digest
SHA256 c15892e2f0280761f41c10002eb5b5c7df05b6eefda32c85c18a1a2c42d7dbd1
MD5 f81614a3a9207c628016eefbddba57fe
BLAKE2b-256 af6974725732184d9537a139d52fb85d736118c645598584f6ef0bed84fe62fd

See more details on using hashes here.

File details

Details for the file pymongo-2.5.2-py2.7-win-amd64.egg.

File metadata

File hashes

Hashes for pymongo-2.5.2-py2.7-win-amd64.egg
Algorithm Hash digest
SHA256 9586038556638d14d6812d46f6dce200ddbccca8f1496451e6eff8f30507665f
MD5 e9b94cbfdf4b4a173923c4f4bc94413d
BLAKE2b-256 65c3e875459027ff9809f6e5478074bdc8f0a69aae3b7071ad83ea6e82e7420f

See more details on using hashes here.

File details

Details for the file pymongo-2.5.2-py2.7-win32.egg.

File metadata

File hashes

Hashes for pymongo-2.5.2-py2.7-win32.egg
Algorithm Hash digest
SHA256 78e7e7beab7606bea3955220451b8b2d6cb876ae5efe2e1e2b5747c2b7af281a
MD5 befdb7e2f3dc6f5f44db4d977e30ec98
BLAKE2b-256 d3336a398f95864741c738e49d478e6f9fe5af6d9c5734ec7520b2922f0a0422

See more details on using hashes here.

File details

Details for the file pymongo-2.5.2-py2.7-macosx-10.8-intel.egg.

File metadata

File hashes

Hashes for pymongo-2.5.2-py2.7-macosx-10.8-intel.egg
Algorithm Hash digest
SHA256 0f9e3367fa6f31cd41a62bb07d60b8a0aa1c237404a396e703ba7fd0ae9bb82b
MD5 b09e1e3711b52c25261231c1de0a0990
BLAKE2b-256 c864ba70dadbae82e3838b8e9deefd543dc553fb5626cadf50393c6cb02a7a96

See more details on using hashes here.

File details

Details for the file pymongo-2.5.2-py2.7-macosx-10.7-intel.egg.

File metadata

File hashes

Hashes for pymongo-2.5.2-py2.7-macosx-10.7-intel.egg
Algorithm Hash digest
SHA256 3e0f2c73d3b05e7628b7d04211ac127b7d0141fdbf3939cc33b13198e83cdad1
MD5 3d31c1c1256b030e5991eee379f5f73c
BLAKE2b-256 c6bbc6ddca37e749a0f6e6a7f6dce814a69467a96947471adcd9e089ef8deca5

See more details on using hashes here.

File details

Details for the file pymongo-2.5.2-py2.7-macosx-10.6-intel.egg.

File metadata

File hashes

Hashes for pymongo-2.5.2-py2.7-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 ac8262436afee5b45bef82100ea54aca8664cf60dfb5859e910277635fcd3b47
MD5 7968ce756297372a4abdb373af5d907c
BLAKE2b-256 ea91b35abf7d62c534b259e9bc4ffed2542bccacaccacb38fdb746bb7608ee31

See more details on using hashes here.

File details

Details for the file pymongo-2.5.2-py2.6-win-amd64.egg.

File metadata

File hashes

Hashes for pymongo-2.5.2-py2.6-win-amd64.egg
Algorithm Hash digest
SHA256 32c08ec42721d6b677692886d10cccb1028f12cdcbfd21e9de7108f1426434ae
MD5 3c243b66c0112fb9e868bc411e7a39a8
BLAKE2b-256 b1235769188b549e1b751de37f20e137ee5b4c9d00022ce6cb21775e5f73d129

See more details on using hashes here.

File details

Details for the file pymongo-2.5.2-py2.6-win32.egg.

File metadata

File hashes

Hashes for pymongo-2.5.2-py2.6-win32.egg
Algorithm Hash digest
SHA256 05919c3faa8bcb3235af52b41092c114f8806b6f34955922913539693ccd59d2
MD5 c7f96026b68ac2310cadda64618a2926
BLAKE2b-256 5e743332644a3a14c0abf75735d4d523f8fda6f5e41ea322222ddcfdcf39e7d4

See more details on using hashes here.

File details

Details for the file pymongo-2.5.2-py2.6-macosx-10.8-intel.egg.

File metadata

File hashes

Hashes for pymongo-2.5.2-py2.6-macosx-10.8-intel.egg
Algorithm Hash digest
SHA256 699f75b10e86b63e2882d668cd49ce856447e7f3ce8c4e7e4797d0cd134ebb1c
MD5 261f6addf58de12598ff2da3c32892e2
BLAKE2b-256 e09f2a8e826d1420bdfe9244c5e3cbb63332ccc78d8c9579166398ce75b821b5

See more details on using hashes here.

File details

Details for the file pymongo-2.5.2-py2.6-macosx-10.7-intel.egg.

File metadata

File hashes

Hashes for pymongo-2.5.2-py2.6-macosx-10.7-intel.egg
Algorithm Hash digest
SHA256 69e9af17382bfdc8008d52540fb99f4ca4858cf9e4274fffe1092bdb9bbcb563
MD5 0e31c3e70235497adb4999bc030f77b1
BLAKE2b-256 a2c19a677b204472c0d7b5c77c0b78bc6dae3cc4b76aac394ca542e8a17ee59e

See more details on using hashes here.

File details

Details for the file pymongo-2.5.2-py2.6-macosx-10.6-universal.egg.

File metadata

File hashes

Hashes for pymongo-2.5.2-py2.6-macosx-10.6-universal.egg
Algorithm Hash digest
SHA256 a0c59b1169521ede3b656e36c7b6461445a4b9e5729acdcd96bdf669256d96fd
MD5 3e0d2074327ed589d71b59d10adccd6d
BLAKE2b-256 c7a29b49d26ea7a0f85fd60e58175ca1c504dce0c32c50cc15382b732ebd265a

See more details on using hashes here.

File details

Details for the file pymongo-2.5.2-py2.5-win32.egg.

File metadata

File hashes

Hashes for pymongo-2.5.2-py2.5-win32.egg
Algorithm Hash digest
SHA256 8b5c06d67e4d236dd3d0dbd58f4d8d6c7fb2504c70a8eea4147d6ce753e25a11
MD5 bd0093a3e4a1098dfa1e640a81b617dd
BLAKE2b-256 981e5a6d77fd4f158422eaaa9c9533b2d5ca319d6cb46ccab512848857c4db29

See more details on using hashes here.

File details

Details for the file pymongo-2.5.2-py2.5-macosx-10.8-x86_64.egg.

File metadata

File hashes

Hashes for pymongo-2.5.2-py2.5-macosx-10.8-x86_64.egg
Algorithm Hash digest
SHA256 f2ccd6a0f8927cb44ed414e8cfa847f09f82dd32f4b561b2ff2622e4b515cac8
MD5 cb53e470096c42ba893b260e41c595e7
BLAKE2b-256 598c213f39e73ccbf65d159896d7d392eaa5b868a9988bc9dce23e4127496b86

See more details on using hashes here.

File details

Details for the file pymongo-2.5.2-py2.5-macosx-10.7-x86_64.egg.

File metadata

File hashes

Hashes for pymongo-2.5.2-py2.5-macosx-10.7-x86_64.egg
Algorithm Hash digest
SHA256 3c869b3dcb4a1a0bbea5eedda3b764b01e7b6fa8ecadf03ba734b133d06ff736
MD5 8b89488f390265341c895efe23e89408
BLAKE2b-256 18e1b95a959c6718e3d30aa5583ba1d9fc54e192d6d45c49acbe5edaac2c616e

See more details on using hashes here.

File details

Details for the file pymongo-2.5.2-py2.5-macosx-10.6-i386.egg.

File metadata

File hashes

Hashes for pymongo-2.5.2-py2.5-macosx-10.6-i386.egg
Algorithm Hash digest
SHA256 ef60f3fe4ef1bcbb82647b9c8116cc46eea0b873583b2f7af612f17b94b1e493
MD5 5ca37790f9eb998d8df4f895fe9a0c7a
BLAKE2b-256 401bab09677f310890b2190000eb2a4af20b5e858f97336dde794aca3623d8af

See more details on using hashes here.

File details

Details for the file pymongo-2.5.2-py2.4-win32.egg.

File metadata

File hashes

Hashes for pymongo-2.5.2-py2.4-win32.egg
Algorithm Hash digest
SHA256 d916ba8ed1e65ae3e95eed0aca5e9e3aced3af4f1360f9d95a898c2fdd9a4d20
MD5 1bb9a203878b55b6302a51811223fd13
BLAKE2b-256 6c8835f5f5e2eeaa3e69e06d0fa6cfe5266c47a3c1e3e2e14e185c2cb8192aae

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