HashGuard creates cryptographic hash manifests of your directories and verifies them on demand. One command tells you exactly what changed, when, and where.
import jsoncanon doc1 = { "def": [5, 2, 1, 7], "abc": 123 } doc2 = { "abc": 123, "def": [5, 2, 1, 7] } jsoncanon.dumps(doc1) jsoncanon.dumps(doc2) jsoncanon.dumps(doc ...