molten: modern API framework¶ Release v1.0.2. (Installation, Changelog, Discuss, Source Code) molten is a minimal, extensible, fast and productive framework for building HTTP APIs with Python. Here’s a quick taste: from molten import App, Route def hello(name: str, age: int) -> str: return f"Hi {name}! I hear you're {age} years old." app = App(routes=[Route("/hello/{name}/{age}", hello)])