Skip to main content

FastAPI based Microservice Architecture Development Kit

Project description

Logo


MSA SDK - FastAPI based Microservice Architecture Development Kit

To build PoC's, MVP's, API's with CRUD and Dashboards fast and consistent.

Build on top of FastAPI, SQLModel, SQLAlchemy, Amis and many other bullet proofed libraries.


Documentation: http://msa.u2d.ai/

Features

  • Build connected distributed applications faster: Ready for Dapr..
  • Consistency: With sometimes 10s or 100s of Micro Services, the SDK helps to easy version control and provides a stable Dapr Basis.
  • High performance: Based on FastAPI. Enjoy all the benefits.
  • High efficiency: Perfect code type hints. Higher code reusability.
  • Support asynchronous and synchronous hybrid writing: ORM is based onSQLModel & Sqlalchemy. Freely customize database type. Asynchronous mode. Strong scalability.
  • Front-end separation: The front-end is rendered by Amis, the back-end interface is automatically generated by MSA SDK - Admin. The interface is reusable.
  • Strong scalability: The background page supports Amis pages and ordinary html pages. Easily customize the interface freely.
  • Automatic api documentation: Automatically generate Interface documentation by FastAPI. Easily debug and share interfaces.

Dependencies

Usage example is in the app module __init__.py

# -*- encoding: utf-8 -*-
"""
Copyright (c) 2022 - U2D.ai / S.Welcker
"""
__version__ = "0.0.1"

from typing import Optional
from sqlmodel import SQLModel
from msaSDK.admin.utils.fields import Field
from msaSDK.models.service import get_msa_app_settings
from msaSDK.service import MSAApp
from msaSDK.utils.scheduler import MSATimers, MSATimerEnum


# example async function to be executed by a timer
async def test_timer_min():
  app.logger.info("MSA SDK Test Timer Async Every Minute")


# example sync/blocking function to be executed by a timer
def test_timer_five_sec():
  app.logger.info("MSA SDK Test Timer Sync 5 Second")


# SQLModel class to be used for auto API CRUD and/or Admin Site Web UI
class TestArticle(SQLModel, table=True):
  id: Optional[int] = Field(default=None, primary_key=True, nullable=False)
  title: str = Field(title='ArticleTitle', max_length=200)
  description: Optional[str] = Field(default='', title='ArticleDescription', max_length=400)
  status: bool = Field(None, title='status')
  content: str = Field(title='ArticleContent')


# SQLModel class to be used for auto API CRUD and/or Admin Site Web UI
class TestCategory(SQLModel, table=True):
  id: Optional[int] = Field(default=None, primary_key=True, nullable=False)
  title: str = Field(title='ArticleTitle', max_length=200)
  description: Optional[str] = Field(default='', title='ArticleDescription', max_length=400)
  status: bool = Field(None, title='status')
  content: str = Field(title='ArticleContent')


# get the MSA app setting, clear the cache, set some settings
get_msa_app_settings.cache_clear()
settings = get_msa_app_settings()
settings.title = "SPK.ai - MSA/SDK MVP"
settings.version = "SPK.0.0.1"
settings.debug = True

# Create some timers with a MSATimer instance, define the interval and set the handler
my_timers: MSATimers = MSATimers()
my_timers.create_timer(MSATimerEnum.every_minute, test_timer_min)
my_timers.create_timer(MSATimerEnum.on_the_5_second, test_timer_five_sec)

# Create the main app instance, like the FastAPI but provide a Setting Definition Instance
# Optional the Classes of your SQLModels
# Define if the optional Admin Site gets mounted automatically, if False you need to Mount in your own Startup MSAUIEvent Handler
# Optional the MSATimers instance
app = MSAApp(settings=settings, timers=my_timers, auto_mount_site=True,
             sql_models=[TestArticle, TestCategory],
             contact={"name": "MSA SDK", "url": "http://u2d.ai", "email": "stefan@u2d.ai"},
             license_info={"name": "MIT", "url": "https://opensource.org/licenses/MIT", })

# use the internal logger of app
app.logger.info("Initialized " + settings.title + " " + settings.version)


# Optional use startup event
# Mount the Admin Site here if enabled and the auto mount option was False
@app.on_event("startup")
async def startup():
  app.logger.info("MSA SDK Own Startup MSAUIEvent")
  # app.mount_site()


# Optional use shutdown event
@app.on_event("shutdown")
async def shutdown():
  app.logger.info("MSA SDK Own Shutdown MSAUIEvent")

Typical Run Log

Typical Log Run

Interface Preview

Home Screen with System Info

  • Open http://127.0.0.1:8090/admin/ in your browser: Home

CRUD of SQLModels Screen

CRUD

Login Screen

  • Open http://127.0.0.1:8090/admin/auth/form/login in your browser: Login

OpenAPI Interactive Documentation (Swagger) Screen

  • Open http://127.0.0.1:8090/#/admin/docs in your browser: OpenAPI

Profiler Screen

  • Open http://127.0.0.1:8090/#/admin/profiler in your browser: OpenAPI

License Agreement

  • MSA SDKBased on MIT open source and free to use, it is free for commercial use, but please clearly show the copyright information about MSA SDK - Auth Admin in the display interface.

How to create the documentation

We use mkdocs and mkdocsstring. The code reference and nav entry get's created virtually by the triggered python script /docs/gen_ref_pages.py while mkdocs serve or build is executed.

Requirements Install for the PDF creation option:

PDF Export is using mainly weasyprint, if you get some errors here pls. check there documentation. Installation is part of the MSA SDK, so this should be fine.

We can now test and view our documentation using:

mkdocs serve

Build static Site:

mkdocs build

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

msaSDK-0.1.0.tar.gz (120.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page