Skip to main content

Ortus CMS integration for Flask applications

Project description

Ortus Flask Integration

Ortus CMS integration package for Flask applications to enable:

  • Webhook receiving for blog sync from Ortus CMS
  • Authenticated API for Ortus to fetch blogs
  • EditorJS data support

Installation

pip install ortus-flask

Usage

1. Initialize in your Flask app

from flask import Flask
from flask_sqlalchemy import SQLAlchemy
from flask_migrate import Migrate
from ortus_flask import init_ortus
import os
from dotenv import load_dotenv

load_dotenv()  # Loads ORTUS_WEBHOOK_SECRET and ORTUS_API_KEY

app = Flask(__name__)
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///yourapp.db'

db = SQLAlchemy(app)
migrate = Migrate(app, db)

# Import your Blog model
from models import Blog

# Initialize Ortus integration
app.config['ORTUS_WEBHOOK_SECRET'] = os.getenv('ORTUS_WEBHOOK_SECRET')
app.config['ORTUS_API_KEY'] = os.getenv('ORTUS_API_KEY')
init_ortus(app, db, Blog)

3. Add to your .env

ORTUS_WEBHOOK_SECRET=your_webhook_secret
ORTUS_API_KEY=your_api_key

API Endpoints

After integration, these endpoints are available:

  • POST /api/webhook/blog - Receive blogs from Ortus
  • GET /api/webhook/config - Get webhook configuration
  • GET /api/sites/1/blogs - Fetch all blogs (authenticated)

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ortus_flask-0.1.5-py3-none-any.whl (19.2 kB view details)

Uploaded Python 3

File details

Details for the file ortus_flask-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: ortus_flask-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 19.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ortus_flask-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 4115287e512be176043c7a76ec6475ff04ab8e79cb993a584592318f3d03628f
MD5 bd116950bf957eb8620269bef214294c
BLAKE2b-256 dfe0f751518298c327aa91cefd51b3b3003a81ab95b038546d6a56755a26bf1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ortus_flask-0.1.5-py3-none-any.whl:

Publisher: pypi-publish.yml on AyushDocs/ortus-flask

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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