{"library":"quill-delta","title":"quill-delta","description":"Python port of the quill.js delta library for representing rich text documents and supporting operational transformation (OT). Version 1.0.3, stable release with no major recent updates.","language":"python","status":"active","last_verified":"Fri May 01","install":{"commands":["pip install quill-delta"],"cli":null},"imports":["from quill_delta import Delta"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"from quill_delta import Delta\n\ndelta = Delta()\ndelta.retain(5)\ndelta.insert('Hello')\ndelta.delete(2)\nprint(delta.ops)\n# Output: [{'retain': 5}, {'insert': 'Hello'}, {'delete': 2}]","lang":"python","description":"Create a Delta, apply operations, and inspect ops.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}