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.2-py3-none-any.whl (18.7 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: ortus_flask-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 18.7 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.2-py3-none-any.whl
Algorithm Hash digest
SHA256 a4284492dae28f46d6b6db2862a3fd65f4717e88f201d5d35126d645bf82f3f3
MD5 cc361aa13046875ad5cfd0d224258907
BLAKE2b-256 53166a6c74c4dc98a598d3f5334c0b71ca3ccfe53295d6d7cecdcf86cfb152f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ortus_flask-0.1.2-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