WSME (Web Service Made Easy) simplifies writing REST APIs by using Python type annotations to define web service protocols, supporting JSON and XML. Version 0.12.1 is the latest stable release, with a maintenance cadence.
pip install wsmeVerified import paths — ran on the pinned version, not inferred.
Define a simple web service with WSME using type annotations and WSPromise.
Upgrade to Python >=3.8 and replace 'from wsmeext.pecan import ...' with 'from pecan_wsme import ...' (install pecan-wsme).
Change imports to 'from wsme import types'.
Always use wsme.types types, e.g., types.text, types.int, etc.
No dependency data recorded yet.