Going Beyond the SDK

Increased API Design Freedom

The SDK Software Development Kit is built on top of FastAPI, which is an open source web framework. So everything that can be done with the SDK can also be done with FastAPI, or any other web framework, but with more effort.

To use FastAPI with Daeploy you can use the app object in daeploy.service. Some very basic boilerplate to do this could be

from daeploy import service

app = service.app

# Your code

if __name__ == '__main__':
    service.run()