Skip to main content

Create JSON:API and Web App from database, with LogicBank -- 40X more concise, Python for extensibility.

Project description

Downloads Latest Version Supported Python versions

API Logic Server

TL;DR - Executable Software, now... Customizable

With 1 command, you get:

  • Working Software, Now
    • a database API, to unblock UI development
    • a multi-page web app, to engage Business Users - early in the project
    • Declarative logic using unique spreadsheet-like rules - 40X more concise than code, extensible with Python - for remarkable business agility.
  • A Customizable Project, using a standard language and tools, in an cleanly isolated, containerized environment that matches your deployment architecture.

To create the sample API and web-app project in a minute or two -- start Docker, and execute the following commands (Windows, use Powershell):

cd ~/Desktop                       # directory of API Logic Server projects on local host

# Start (install if required) the API Logic Server docker container
docker run -it --name api_logic_server --rm -p 5656:5656 -p 8080:8080 -v ${PWD}:/localhost apilogicserver/api_logic_server

ApiLogicServer create-and-run --project_name=/localhost/api_logic_server --db_url=  # Working Software, Now

Your API is running - explore it with swagger.

VSCode and PyCharm users can follow these simplified steps.

You can picture the process as follows, as shown by this short tutorial video showing complete project creation, execution, customization and debugging.

Using VS Code

After you've explored the tutorial, try out our dockerized test databases, and then try your own database.

Already installed? Upgrade to the latest (3.40.01): docker pull apilogicserver/api_logic_server (you may need to rebuild your container).

Feature Summary

Feature Providing Why it Matters Learn More
1. JSON:API and Swagger Endpoint for each table, with...
Filtering, pagination, related data
Unblock Client App Dev SAFRS
2. Transactional Logic Spreadsheet-like Rules - 40X more concise
Compare Check Credit with legacy code
Strategic Business Agility Logic Bank
3. Basic Web App Instant multi-page, multi-table web app Engage Business Users
Back-office Admin
Flask App Builder,
fab-quickstart
4. Customizable Project Custom Data Model, Endpoints, Logic Customize and run
Re-creation not required
VS Code
PyCharm ...
5. Model Creation Python-friendly ORM Custom Data Access
Used by API and Basic Web App
SQLAlchemy

The following tutorial is a good way to explore API Logic Server.

  

API Logic Server - Sample Tutorial

API Logic Server includes this sample database, used for this Tutorial. We'll install as described above, but use VS Code to run, customize and debug.

Also works with PyCharm This tutorial presumes you are running in an IDE - VS Code or PyCharm. Projects are pre-configured for VS Code with `.devcontainer` and `launch configurations,` so these instructions are oriented around VS Code. You will need to configure container and launch configurations for PyCharm - [see here](https://github.com/valhuber/ApiLogicServer/wiki/Working-with-IDEs) for more information.

Install and Create

Pre-reqs:

  1. Docker installed and running
  2. VS Code (1.61+)
cd ~/Desktop                       # directory of API Logic Server projects on local host

# Start API Logic Server container
docker run -it --name api_logic_server --rm -p 5656:5656 -p 8080:8080 -v ${PWD}:/localhost apilogicserver/api_logic_server

ApiLogicServer create --project_name=/localhost/api_logic_server --db_url=  # RETURN for sample database

# start VS Code, and open ~/Desktop/api_logic_server
#   1. install the remote-container extension if asked
#   2. re-open in container when asked

To begin:

  1. Execute the steps above to install API Logic Server and create the sample project
  2. Start VS Code, and open the created project (e.g. ~/Desktop/api_logic_server)

In this tutorial, we will explore:

  • run - we will first run the Web App and the JSON:API
  • customize - we will then explore some customizations already done for the API and logic, and how to debug them

   

Run

Created projects are instantly executable. Let's explore the Basic Web App and the API.

Basic Web App

To run the Web App, follow these steps:

  1. Click Run and Debug
    • Note: these steps are highlighted in the diagram below
  2. Select the Basic Web App Launch Configuration
  3. Press the green run button
    • The app should start, and VS Code will suggest opening a Browser (the preview browser is shown below). Do so, and run the app with user admin, password p.
  4. Explore the app - multi-page, multi-table, automatic joins
  5. Stop the server
Preparing Flask AppBuilder

Before you run the basic web app on your own database, you must create admin data, and address certain restrictions (not required for this tutorial). For more information, see Working with Flask AppBuilder.

JSON:API - Swagger

Your API is instantly ready to support ui and integration development, available in swagger, as shown below. JSON:APIs are interesting because they are client configurable to reduce network traffic and minimize organizational dependencies.

The creation process builds not only the API, but swagger so you can explore it, like this:

  1. Select the ApiLogicServer Launch Configuration
  2. Press the green run button
    • The app should start, and VS Code will suggest opening a Browser.
  3. Explore the swagger
    • For each table, you will find get (with filtering, pagination, related data), patch, post and delete
  4. Don't stop the server; we'll use it for debugging...

   

Customize and Debug

That's quite a good start on a project. But we've all seen generators that get close, but fail because the results cannot be extended, debugged, or managed with tools such as git and diff.

Let's examine how API Logic Server projects can be customized for both APIs and logic. We'll first have a quick look at the created project structure, then some typical customizations.

The API and web app you just reviewed above were not customized - they were created completely from the database structure. For the sample project, we've injected some API and logic customizations, so you can explore them in this tutorial, as described below.

Project Structure

Use the Project Explorer to see the project structure:

Directory Usage Key Customization File Typical Customization
api JSON:API api/customize_api.py Add new end points / services
database SQLAlchemy Data Model Classes database/customize_models.py Add derived attributes, and relationships missing in the schema
logic Transactional Logic logic/declare_logic.py Declare multi-table derivations, constraints, and events such as send mail / messages
ui Basic Web App ui/basic_web_app/app/view.py Control field display, and add interfaces like graphs and charts

Let's now explore some examples.

Customize model code

Customizing Model Code

The created project is extremely small, since the created code defines declarative models, rather than low level procedural code. Not only does this make it small, it makes it very easy to customize the behavior.

For example, the API is defined (api/expose_api_models.py - upper left code pane) with statements as shown below. It's instantly obvious how to alter this code, e.g., to not expose a given table as an endpoint.

api.expose_object(models.Category)
api.expose_object(models.Customer)
api.expose_object(models.CustomerDemographic)

The same applies to ui/basic_web_app/app/view.py - it's clear how to control what fields are displayed (including joins), and in what order:

class OrderDetailModelView(ModelView):
datamodel = SQLAInterface(OrderDetail)
list_columns = [
"Id", "Order.ShipName", "Product.ProductName", "UnitPrice", "Quantity"]
show_columns = [
"Id", "Order.ShipName", "Product.ProductName", "UnitPrice", "Quantity", "Discount", "Amount", "ShippedDate", "ProductId", "OrderId"]
edit_columns = [
"Id", "UnitPrice", "Quantity", "Discount", "Amount", "ShippedDate", "ProductId", "OrderId"]
add_columns = [
"Id", "UnitPrice", "Quantity", "Discount", "Amount", "ShippedDate", "ProductId", "OrderId"]
related_views = []

API Customization

While a standards-based API is a great start, sometimes you need custom endpoints tailored exactly to your business requirement. You can create these as shown below, where we create an additional endpoint for add_order.

To review the implementation:

  1. Open Explorer > api/customize_api.py:
  2. Set the breakpoint as shown
  3. Use the swagger to access the ServicesEndPoint > add_order, and
    1. Try it out, then
    2. execute

You can examine the variables, step, etc.

Logic

We've all seen excellent technology that can create great User Interfaces. But for transactional systems, their approach to logic is basically "your code goes here".

That's a problem - for transaction systems, the backend constraint and derivation logic is often half the system.

The logic portion of API Logic server is a declarative approach - you declare spreadsheet-like rules for multi-table constraints and derivations. The 5 rules shaded below represent the same logic as 200 lines of Python - a remarkable 40X.

Since they automate all the re-use and dependency management, rules are 40X more concise than code.

Logic consists of rules and conventional Python code. Explore it like this:

  1. Explore the logic/declare_logic.py file
    • Observe the 5 rules highlighted in the diagram below. These are built with code completion.
  2. Set a breakpoint as shown
    • This event illustrates that logic is mainly rules, extensible with standard Python code
  3. Using swagger, re-execute the add_order endpoint
  4. When you hit the breakpoint, expand row (VARIABLES list, top left)

   

Tutorial Wrap up

Let's recap what you've seen:

  • Working software now - a database API and a Web App - created automatically from a database, in moments instead of weeks or months.

  • Customization - for both the API and Logic - using Visual Studio code, for both editing and debugging

Docker cleanup

VS Code leaves the container and image definitions intact, so you can quickly resume your session. You may wish to delete this. it will look something like vsc-api_logic_server....

   

React-Admin Creation

ApiLogicServer 2.3.4 can also create react-admin client applications. This element is for technology exploration - it is not production ready.

See here for more information.

Architectural Overview

Docker Containers As shown below, there are typically 2-3 "machines" in operation: * Your **local host** (in grey), where the Customizable Project files (`api_logic_server`) are stored, and your Dev Tools (IDE etc) operate
  • The ApiLogicServer Docker container (blue), which contains:

    • The ApiLogicServer, with CLI (Command Language Interface) commands:
      • create to create projects on your local host
      • run to execute projects, utilizing the various runtimes (Flask, SQLAlchemy, SAFRS API, Logic, Flask App Builder)
    • A Python environment to support execution, and development using your IDE
    • Neither API nor logic execution creates / uses additional files or database data; your database access is via standard SQLAlchemy models
      • The exception to this is Flask App Builder, which creates additional database tables for security authorization
  • The database (purple) can run as a separate Docker container, in your local host, or (for the demo) within the ApiLogicServer docker container

Directory Contents

When you have created your project, you will find the following project directory in ~/dev/servers on your (grey) local host (here opened in VS Code):

Your docker container (blue) files include Python, Python libraries, and API Logic Server. The Python project above utilizes IDE remote-container support (visible at the lower left in the preceding diagram), which utilizes the docker container (not local host) version of Python.

Your docker container looks like this:

Alternative option: pip install

You can also run ApiLogicServer without Docker. The familiar pip install ApiLogicServer creates the ApiLogicServer in your venv instead of the Docker container.

We recommend, however, that you take a good look at Docker:

  • It avoids a sometimes-tricky Python install
  • It isolates your projects into containers
  • It is quite likely the eventual deployment architecture, so you're already in step with that

Command Language Details

Click to see Docker run argument descriptions, and how to inspect Docker environment

Install - docker run

Once you've installed Docker itself, the docker run command above installs the ApiLogicServer docker (if it's not already there), and starts it, opening a terminal window on the Docker container. Notes:

  • the v ${PWD}:/localhost argument is what enables the ApiLogicServer to create / access the project on your local host
    • Windows - Powershell must be used (due to the $(PWD) syntax)
    • if you use Command Prompt, specify the local directory completely

The arguments mean:

  • -it - launch a terminal window for the Docker container
  • --name api_logic_server - the name of the image on your local host
  • -rm - remove the container once it stops (your project files are not lost - they are on your local host)
  • -p 5656:5656 - maps local (host) part to Docker port
  • -v ${PWD}:/localhost - maps a local directory to a mount name for Docker. This is where a directory will be created for your new project.
    • ${PWD} is your current folder.
      • You could also provide a specific folder, e.g., ~/dev/servers (Unix), or C:\Users\val\dev\servers (windows)
    • /localhostis the mounted volume reference from inside the Docker container
  • apilogicserver/api_logic_server - the name of the image to pull from Docker Hub.
    • This will fetch the image first time, and will run it locally on subsequent runs
    • The image is not automatically refreshed -- install ApiLogicServer updates as described below

You may also wish to add a parameter for networking:

  • --net my-network - attaches to my-network

On your Docker container, you can inspect your environment:

python py.py

Open a new terminal window on your local host, and find your docker IP address:

docker inspect api_logic_server  # you will find the ip, e.g., 172.17.0.2

Internals - How It Works

How It Works

The ApiLogicServer CLI create (or run) command creates the project structure shown below - for more information, see here.

The executables are shown in blue, corresponding to Run, above. Your customizations are done to the files noted in green.

API Execution: api_logic_server_run.py

api_logic_server_run.py sets up a Flask app, the database, logic and api:

  • Database Setup: It importsapi/expose_api_models which imports database/models.py, which then imports database/customize_models.py for your model extensions. api_logic_server_run.py then sets up flask, and opens the database with db = safrs.DB

  • Logic Setup: It then calls LogicBank.activate, passing declare_logic which loads your declared rules. On subsequent updates, logic operates by handling SQLAlchemy before_flush events, enforcing the declared logic. This is non-trivial, using the engine in LogicBank (no relation to retail!). For more information on logic execution, see here.

  • API Setup: It next invokes api/expose_api_models. This calls safrs to create the end points and the swagger information, based on the created database/models.py (the models used by the SQLAlchemy ORM). It finally calls api/customize.py where you can add your own services. The sample includes a trivial Hello World, as well as add_order.

Basic Web App Execution: ui/basic_web_app/run.py

run.py executes from app import app which loads the module `ui/basic_web_app/app/init.py'; this loads the models and activates logic.

It then instantiates the class AppBuilder, which interprets the views.py file that describes your pages and transitions. You can edit this file to tune what data is displayed, introduce graphs and charts, etc.

Installation

As of release 3.00.00, you can install using Docker (recommended), or standard pip install.

Docker Installation

Docker installation enables you to bypass sometimes-tricky Python installs by using Docker.

Docker support provides not only ApiLogicServer, but a Python environment you can use with your IDE. It is described above.

See the link above for more information on install and execution.

Local Installation

Caution: Python install is rather more than running an installer. Use this page to Verify / Install Python.

Then, install the ApiLogicServer CLI in the usual manner:

virtualenv venv            # may require python3 -m venv venv
source venv/bin/activate   # windows venv\Scripts\activate
pip install ApiLogicServer # you may need to use pip3, or restart your terminal session

Cloud (reduced functionality)

The cloud demo is less recommended, since you don't get to use Swagger or the Basic Web App. But you just want to take a quick look the the API, run the demo using a cloud-based (MyBinder) install.

For your own projects, follow normal procedures to deploy them to the cloud.

Heads up - Certificate Issues

We sometimes see Python / Flask AppBuilder Certificate issues - see Troubleshooting.

Default Python version

In some cases, your computer may have multiple Python versions, such as python3. ApiLogicServer run relies on the default Python being 3.8 or higher. You can resolve this by:

  • making python3 the default Python, or
  • using ApiLogicServer create, and running python3 api_logic_server_run.py

Project Information

Tutorials

There are a number of facilities that will quickly enable you to get familiar with API Logic Server:

  • Tutorial walks you through the steps of creating a server
  • Video shows the steps of creating a server

Status

We have tested several databases - see status here.

We are tracking issues in git.

We have introduced several renames to clarify operation. These do not affect existing projects. However, we've not updated all the docs to reflect these changes:

  • logic/declare_logic.py replaces logic_bank.py
  • api/customize_api.py replaces expose_services.py
  • database/customize_models.py replaces models_ext.py

Acknowledgements

Many thanks to

  • Armin Ronacher, for Flask
  • Mike Bayer, for SQLAlchemy
  • Thomas Pollet, for SAFRS, and invaluable design assistance
  • Daniel Gaspar, for Flask AppBuilder
  • Alex Grönholm, for Sqlacodegen
  • Meera Datey, for creating React Admin user interface
  • Denny McKinney, for Tutorial review
  • Achim Götz, for design collaboration and testing
  • Max Tardiveau, for testing and help with Docker
  • Michael Holleran, for design collaboration and testing
  • Nishanth Shyamsundar, for review and testing
  • Thomas Peters, for review and testing
  • Gloria Huber and Denny McKinney, for doc review

Articles

There are a few articles that provide some orientation to Logic Bank and Flask App Builder. These technologies are automatically created when you use ApiLogicServer:

Change Log

11/13/2021 - 03.50.00: rebuild-from-database/model, improved relationship support

11/04/2021 - 03.40.01: Per MacOS Monterey, default ports to 5001, 5002

10/18/2021 - 03.20.11: Readme Tutorial for IDE users

10/16/2021 - 03.20.07: dev-network no longer required (see Releases)

10/03/2021 - 03.10.17: default db_url

10/02/2021 - 03.01.16: bugfix improper run arg for VSCode launch configuration

09/29/2021 - 03.01.15: run (now just runs without create), added create-and-run

09/25/2021 - 03.01.10: enable run command for Docker execution, pyodbc, fab create-by-copy

09/15/2021 - 03.00.09: auto-create .devcontainer for vscode, configure network, python & debug

09/10/2021 - 03.00.02: rename logic_bank to declare_logic, improved logging

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

ApiLogicServer-3.50.0.tar.gz (7.3 MB view hashes)

Uploaded Source

Built Distribution

ApiLogicServer-3.50.0-py3-none-any.whl (7.6 MB view hashes)

Uploaded Python 3

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