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

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.1.tar.gz (302.9 kB view details)

Uploaded Source

Built Distributions

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

Uploaded Source

pymongo-2.5.1.win-amd64-py3.2.exe (396.8 kB view details)

Uploaded Source

pymongo-2.5.1.win-amd64-py2.7.exe (395.4 kB view details)

Uploaded Source

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

Uploaded Source

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

Uploaded Source

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

Uploaded Source

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

Uploaded Source

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

Uploaded Source

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

Uploaded Source

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

Uploaded Source

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

Uploaded Source

pymongo-2.5.1-py3.3-win32.egg (343.0 kB view details)

Uploaded Source

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

Uploaded Source

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

Uploaded Source

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

Uploaded Source

pymongo-2.5.1-py3.2-win32.egg (337.0 kB view details)

Uploaded Source

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

Uploaded Source

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

Uploaded Source

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

Uploaded Source

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

Uploaded Source

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

Uploaded Source

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

Uploaded Source

pymongo-2.5.1-py2.7-macosx-10.6-intel.egg (353.6 kB view details)

Uploaded Source

pymongo-2.5.1-py2.6-win-amd64.egg (334.5 kB view details)

Uploaded Source

pymongo-2.5.1-py2.6-win32.egg (333.3 kB view details)

Uploaded Source

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

Uploaded Source

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

Uploaded Source

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

Uploaded Source

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

Uploaded Source

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

Uploaded Source

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

Uploaded Source

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

Uploaded Source

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

Uploaded Source

File details

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

File metadata

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

File hashes

Hashes for pymongo-2.5.1.tar.gz
Algorithm Hash digest
SHA256 85949837c807b19af6c3972e311a6eaaae6b2b6e15daa1d207a296b8d2027d36
MD5 5e28d43081b74c59ae2f0e688c6d40a3
BLAKE2b-256 859bdf9a40b6917ae1a2955db2f9b3cc5a81531b5a48050bc944c56ad418beb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.5.1.win-amd64-py3.3.exe
Algorithm Hash digest
SHA256 2977b7fd36643ca5ab6b0602af959d4db8f6d18fc5aed2ea819b2c0e72fb7dfc
MD5 8c636fe9b7d36c8ceac26f1b2a36a64c
BLAKE2b-256 ccfdfd54e24102fe675f4b50d221300d721f07e473a14df7e1023d8b1db1dad7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.5.1.win-amd64-py3.2.exe
Algorithm Hash digest
SHA256 b01e8f8476fdc9a92ef6bbd61c0e31019fb2b48d23e9191a30cfa56ce56dde3d
MD5 489946d7092eb04bd8ad6c7496ca4d94
BLAKE2b-256 6b6965240bea0c8878803a13c05179ec13b0f70a85d8ce7811b7497d8cd49165

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.5.1.win-amd64-py2.7.exe
Algorithm Hash digest
SHA256 615ff50361f7802907299631bd4b4c530818295218c1db9264b03b1b3d6ebad6
MD5 532d030ad37abddd75c86bb2a48c1cc6
BLAKE2b-256 0ce094ea84807768013b8e65c4c0205167d34e6f0663696d7ad58113bffb077c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.5.1.win-amd64-py2.6.exe
Algorithm Hash digest
SHA256 87cd0f73297b8aa0fa7f42abfd3e437bae199f5851d62317d5b9ff4753b8b498
MD5 6857b030976141b1f3eeeae64e5e5d92
BLAKE2b-256 d54b3050b7f6d8618a05733970057a781e64480b9c022f934557c7c36f4b87b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.5.1.win32-py3.3.exe
Algorithm Hash digest
SHA256 956ea36b72d4b87ac95a9019602b9a07195b6c59718f59d5b52221af1ae37d7b
MD5 3303d0601cc5699a56975dcf21771bd0
BLAKE2b-256 e465796646ee92146d30b47abffc8a2ba0709b26656fb09aeaa3e188c0afcb49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.5.1.win32-py3.2.exe
Algorithm Hash digest
SHA256 e4e2a085caf63018fb5572e0da4dd683175e86c2d1e3be4f101168493c16ee21
MD5 68c6f54c119d0c787b494ef9c9440bfb
BLAKE2b-256 d5d8780aeb6ebf06dee75122bc491fe4f5a9adf7b1f7312c5e66d352f1fff91b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.5.1.win32-py2.7.exe
Algorithm Hash digest
SHA256 c9cd526511f21dc786fa037b7c09b143eebd5af30b0bbb7c7857b9901ac59086
MD5 8be04861d08b664af402906d3ff40585
BLAKE2b-256 54de7194aaf79fef2f9e54e50f369848b4e5a6cf80708bc016fa282e366ba588

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.5.1.win32-py2.6.exe
Algorithm Hash digest
SHA256 24a98c5657fb98ae0fdcf9248a4be0cadd5d9eb9cdf82cf1355556550858547b
MD5 f5921530ac62a6a6207646dd19f042e8
BLAKE2b-256 43b7e5ddfd19f292391d24ceec0cfe75eb6cf5a9ef6161313948f3be9a0a800c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.5.1.win32-py2.5.exe
Algorithm Hash digest
SHA256 ed1fb7e0f4ca75c7a5104c98e33745f1a7f3322a8737a27ae5fac9122f88f38e
MD5 604c7dae53c87fec166219c1a5e73729
BLAKE2b-256 dc6dac540b14a92865566ac80e42f6d03bcab44e88462e1cd8c0e913fa43589c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.5.1.win32-py2.4.exe
Algorithm Hash digest
SHA256 75476e1e7d1ded151d939fe2b370cf38ab2dfdf0b3d2cf6e6448edfd21db0973
MD5 f66b6fea868119a01e31e9648a2ab682
BLAKE2b-256 a66bb658dfdf04696f2cbb4f2a9e1ce3c8d1a9c5e0f0c00b701678b8f4ebf694

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.5.1-py3.3-win-amd64.egg
Algorithm Hash digest
SHA256 c71570e42094de07784e82cab9f6c5db71da259246a5e09e87ff3df3d755ee1e
MD5 33a8c267dc28eeef412387040771fc39
BLAKE2b-256 544260693260d76f5912b9d2927bc885b772ffd2944ebc93517001129680908a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.5.1-py3.3-win32.egg
Algorithm Hash digest
SHA256 8b3e99bf401dae153ddf51f7a178e973e360587d549a843bca3c39643fc71c6e
MD5 14d4e6e9c5d6a66c5b55aa69270df3e8
BLAKE2b-256 d2f70fd7dd2bd610bd90a372e3ebad2891f20cc9403f48fcaf7d586ffa08e9b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.5.1-py3.3-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 b348f8eab6722b4b2197f00e85090ba3a0f82f2c39e5beb7733e416d16c5087e
MD5 2a06f3926293a20800c4b2c35183d017
BLAKE2b-256 cc502678246624b5258c6c4c36ffeb60f2d1ca1bd8a10b23f68c3a1e20f7d8a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.5.1-py3.3-macosx-10.5-fat.egg
Algorithm Hash digest
SHA256 7449ddbcb19da124356cd98da6f5293bceb5180e463ed6a5fdb96c67b7a2b9fe
MD5 f5ed2d3fd80059e5827e2ee1bf726ea8
BLAKE2b-256 7810be6cd0d762b21dd01377331b245da52e5c2ff268bbf931cda70d6cf07aec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.5.1-py3.2-win-amd64.egg
Algorithm Hash digest
SHA256 0fce53c0ceeee2270c25560650d001e43e10d6d8f3001884533c6d7481038a3d
MD5 d7f06f5341190d3d2850dbda304dd5d0
BLAKE2b-256 cc67712562239e43a2b9fba924d55ce6c4df1f56b19b17730e7c22820d646e39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.5.1-py3.2-win32.egg
Algorithm Hash digest
SHA256 57a4a27018ad8679ea0e8d0658de23ad97c5a36e7541c253d6afbe766bef63de
MD5 1474f8757a242e624440cdd8763b4e46
BLAKE2b-256 41e6baa01c0bc8325d370fb9754a4ba23e06aa2e9e5700cba67a2ff604d9e84b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.5.1-py3.2-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 2fbf27763234c04eaa02644229b2b0725b0cfce16c1c1132c1a0a57fc2f78250
MD5 470d42b13cce08d174581be76fc4ec12
BLAKE2b-256 4ab54ef89ea596043bb3088c8199278ab894695d06d39cb38673e871808e7da6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.5.1-py3.2-macosx-10.3-fat.egg
Algorithm Hash digest
SHA256 abb02a3683fd44f053b048ced8a353754052e2931246d0c78cca79400bc873a2
MD5 1b654adf2063ddc77679495506ce0528
BLAKE2b-256 2c1028a1419db8bcb29232d556b78821e1b4fba968598ee4d826f749ce7b5d02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.5.1-py2.7-win-amd64.egg
Algorithm Hash digest
SHA256 a377b2e6213720ddb7e9d70e76f733c1f39145e3ca1310f4cfa164173f28480e
MD5 1000b9af993d91688fbb2c7c399817de
BLAKE2b-256 093136b6758fd1e026300c3b65e3ca56f6cc5445f3b61ddab8362f05cc20154c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.5.1-py2.7-win32.egg
Algorithm Hash digest
SHA256 8ab74188ffee1fa89ceff99869015ebcec5e030cb02db326f85453dde4c57d10
MD5 8e1c4d641a8e88aa5434858756e0483b
BLAKE2b-256 27883f5d4f13d4af3aef9c60d592d181dad241818a217e92693d589989f6f2ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.5.1-py2.7-macosx-10.8-intel.egg
Algorithm Hash digest
SHA256 839f115730b6f0bfb7c59f4b0fc57433b81ef6b7ffbc34a9127eadfb55a48bc3
MD5 19a27fab33ca644d433c76b2323e37ab
BLAKE2b-256 e7779576f6d902288249121a8d016a64ec0e3bff6d4760a92b471192d260e012

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.5.1-py2.7-macosx-10.7-intel.egg
Algorithm Hash digest
SHA256 4541a77c9752ecae6aef5420c4ca63776ca47378feddf7ad19605bd10640ba20
MD5 aed55156da6fd92ef7c9687a69f05004
BLAKE2b-256 d8692b9de86e5549054c6f15fc16abe016a78c0d744608560f2a86be522a90cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.5.1-py2.7-macosx-10.6-intel.egg
Algorithm Hash digest
SHA256 3782ed317a22897aed4ad1e5408f6691cab135b9664e0f3fc0df9fb3cb4c9037
MD5 a460007a893e4395f1e8cd001737c123
BLAKE2b-256 cd2b9fd6e754a35a662190109413e24714ff8aac7f9ba5f2dbb1068031d9172b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.5.1-py2.6-win-amd64.egg
Algorithm Hash digest
SHA256 2a66ed06504fa81a8367e13ffd3401cb783a9447f82cd72e28447eb1d4679ebd
MD5 c77bbd1ec484cecd15e549e9fded7a23
BLAKE2b-256 c46db8269f4c223cab37eff922ee8a21e7e398612aae15cccaa24528b9b33ac9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.5.1-py2.6-win32.egg
Algorithm Hash digest
SHA256 21d05d7eb9ac9ab4a804977b710c3d21eee2550d8e11a0f1255609a0045ae40a
MD5 9a2ecd8332096f4399574a130efc00b7
BLAKE2b-256 f50dbe959de20885a524f43f9c5130248afd09e54b6fcd4848277caa4c40c03e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.5.1-py2.6-macosx-10.8-intel.egg
Algorithm Hash digest
SHA256 7952da521b8c563217c8027dd77f71ee266ddf21434a9e846b9458bdca1d1643
MD5 e3bb5684206238f50e39a682ee63ed85
BLAKE2b-256 657c9c900092d25f385bcbe87b9f92a8508e67250327e4ab29c8cdd6c798f59c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.5.1-py2.6-macosx-10.7-intel.egg
Algorithm Hash digest
SHA256 366d7d4f900b515055dafbf7f771925caccfd76e5c39b76e88575902be21e971
MD5 5927b20114e261f47df9c128bfe1ca56
BLAKE2b-256 f23eb54f0458a1cd625c98cc61dfb8937a17917e50be6a27b95e562a7966c716

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.5.1-py2.6-macosx-10.6-universal.egg
Algorithm Hash digest
SHA256 e5be9b72e80404d309ee53fa32f5263e7b702e8cd1ad31a1d42c4b7fd50e15cb
MD5 3fca5ce44721d6db5e3d1391ef08e64b
BLAKE2b-256 30b3ae2ff57f4d12e0d78e2b04100deca3ffd7c99f7fd387bcceaadf5e9ad590

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.5.1-py2.5-win32.egg
Algorithm Hash digest
SHA256 7317f393c97dcecec24d457e8f22beaa4d22b86c47a0204ec1d4057d6f1a5cf4
MD5 7da8efc46b7cab25e47b03c48f46aa54
BLAKE2b-256 3460eacc77e0bf38194e36d89d0abc12a2541899f3b610173482e3d5fd2a0344

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.5.1-py2.5-macosx-10.8-x86_64.egg
Algorithm Hash digest
SHA256 ac0929967e11609f1dab630df26b304ce6912ef462ea3972811d8b259fac242c
MD5 f67293e4b49d524fb5f5f2857b1da9a3
BLAKE2b-256 c33f7ddfb2e8028e120310525111a4ac151ee8d592266a082c4120c5a3df0070

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.5.1-py2.5-macosx-10.7-x86_64.egg
Algorithm Hash digest
SHA256 52d10305bf97f7db4ccdd0646d79c0a9682191678a4bbbbc72334da9f8f4b43c
MD5 043812aaacc517d12bbd137db38617a4
BLAKE2b-256 6f3af7e53221cc693833328b31aba7862b412aa94fc650b8d172e2891aa0669f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.5.1-py2.5-macosx-10.6-i386.egg
Algorithm Hash digest
SHA256 06cc12496cc5faca2f9676b50ad28cda2c5fc983af3b21b672903def1a3eecb7
MD5 98b222858e915141d4de85b4b394f501
BLAKE2b-256 d161e16b79b52c7cb6e06c49611db1049850cddf86fd9903e9e9f6890327574d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-2.5.1-py2.4-win32.egg
Algorithm Hash digest
SHA256 9e2c088be6b1eeb28fa826d9a5a3a5d46872ff378392dbc816d5f7b3238546b0
MD5 9ba47dc2bad77b4fb0c7dd5116e29e4b
BLAKE2b-256 41b48d5d5b5704decd31bc016019650ff2699db37bf114c4382c0aa053cd3f81

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