Skip to main content

Self-healing URLs for Flask applications with intelligent resolvers

Project description

flask-selfheal 🔗

Automatically fix broken URLs in your Flask app using intelligent resolvers.

PyPI - Version PyPI - License

Features

  • Multiple Matching Strategies: Choose from 1:1 exact matching, fuzzy matching, and even hybrid database-backed approaches to find the best matching URL.
  • Configurable: Fine-tune matching strategies, thresholds, and normalization rules to suit your needs.
  • Chainable Resolvers: Combine multiple resolvers to create a robust URL healing strategy.
  • Easy Integration: Plug into any Flask app with minimal setup.
  • Performant: Optimized to try fast methods first and only use expensive ones as a last resort.

Installation

uv pip install flask-selfheal

Usage

Fuzzy Flask Routes Resolver

This example demonstrates how to use the FlaskRoutesResolver to automatically correct common typos in your Flask routes using fuzzy matching (using difflib under the hood).

from flask import Flask
from flask_selfheal import SelfHeal
from flask_selfheal.resolvers import FlaskRoutesResolver

app = Flask(__name__)

@app.route("/home")
def home():
    return "Welcome Home!"

@app.route("/about")
def about():
    return "About Us"

@app.route("/contact")
def contact():
    return "Contact Us"

# Configure SelfHeal with fuzzy matching
SelfHeal(app, resolvers=[FlaskRoutesResolver()])

if __name__ == "__main__":
    app.run(debug=True)
https://example.com/hme    --> Redirects to /home
https://example.com/abot   --> Redirects to /about
https://example.com/contat --> Redirects to /contact

Chaining Multiple Resolvers

You can combine multiple resolvers to create a more robust URL healing strategy. In this example, we use both AliasMappingResolver and FuzzyMappingResolver to handle obsolete URLs and common typos.

from flask import Flask
from flask_selfheal import SelfHeal
from flask_selfheal.resolvers import AliasMappingResolver, FuzzyMappingResolver

app = Flask(__name__)

@app.route("/home")
def home():
    return "Welcome Home!"

@app.route("/new-path")
def new_path():
    return "This is the new path!"

# Define resolvers - will be tried in order defined
resolvers = [
    AliasMappingResolver(
        {"old-path": "new-path"}  # Handle obsolete URLs
    ),
    FuzzyMappingResolver(
        ["home", "new-path"]  # Handle typos
    )
]

SelfHeal(app, resolvers=resolvers)

if __name__ == "__main__":
    app.run(debug=True)
https://example.com/old-path  --> Redirects to /new-path
https://example.com/hme       --> Redirects to /home
https://example.com/new-pth   --> Redirects to /new-path

Database-Backed Resolver

The DatabaseResolver allows you to resolve URLs based on the slug in your database (using SQLAlchemy).

Ensure that you have a model with a slug field in your database (example below).

class Articles(db.Model):
    id = db.Column(db.Integer, primary_key=True)
    slug = db.Column(db.String(100), unique=True, nullable=False) # <--
    title = db.Column(db.String(100), nullable=False)
    content = db.Column(db.Text, nullable=False)
from flask import Flask
from app.models import Articles  # Your SQLAlchemy model
from flask_selfheal import SelfHeal
from flask_selfheal.resolvers import DatabaseResolver

app = Flask(__name__)
app.config["SQLALCHEMY_DATABASE_URI"] = "sqlite:///yourdatabase.db"
db.init_app(app)

@app.route("/articles/<slug>")
def article_detail(slug):
    article = Articles.query.filter_by(slug=slug).first_or_404()
    return f"Article: {article.title}"

# Configure the DatabaseResolver
db_resolver = [
    DatabaseResolver(
        Articles,
        slug_field='slug',
    )
]

SelfHeal(app, resolvers=db_resolver, redirect_pattern="/articles/{slug}")

if __name__ == "__main__":
    app.run(debug=True)
https://example.com/articles/1234         --> Redirects to /articles/hello-world-1234567
https://example.com/articles/hello-world  --> Redirects to /articles/hello-world-1234567
https://example.com/articles/hell-wrl     --> Redirects to /articles/hello-world-1234567
https://example.com/articles/world        --> Redirects to /articles/hello-world-1234567

The DatabaseResolver follows these strategies in order when trying to find a matching slug:

  1. Exact match: Fastest, direct database lookup
  2. SQL LIKE matching: Handle simple variations using SQL LIKE wildcards
  3. Normalized matching: Handle common typos (0 -> o, 1 -> l, etc.)
  4. Word-based matching: Match individual significant words
  5. Partial matching: Match meaningful substrings
  6. Fuzzy matching: Handle more complex typos by fuzzy matching

Fine-tuning the Database Resolver

The DatabaseResolver can be customized with various parameters to adjust its behavior:

resolver = DatabaseResolver(
    model=Product,
    slug_field='slug',
    use_fuzzy=True,                # Enable/disable last resort fuzzy matching
    fuzzy_cutoff=0.7,              # Similarity threshold (0-1)
    enable_word_matching=True,     # Match individual words
    enable_partial_matching=True,  # Match partial strings
    min_word_length=3,             # Minimum word length to consider
    custom_normalizers={           # Custom normalizer mappings (0 -> o, ph -> f, etc.)
        '0': 'o', 'ph': 'f'
    }
)

You can take a look at more examples in the examples/ directory

License

This project is licensed under the MIT License. See the LICENSE file for details.

Contributing

Contributions are welcome! Please open an issue or submit a pull request on GitHub.

Project details


Download files

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

Source Distribution

flask_selfheal-1.1.1.tar.gz (7.0 kB view details)

Uploaded Source

Built Distribution

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

flask_selfheal-1.1.1-py3-none-any.whl (8.5 kB view details)

Uploaded Python 3

File details

Details for the file flask_selfheal-1.1.1.tar.gz.

File metadata

  • Download URL: flask_selfheal-1.1.1.tar.gz
  • Upload date:
  • Size: 7.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.15

File hashes

Hashes for flask_selfheal-1.1.1.tar.gz
Algorithm Hash digest
SHA256 1cdd725c0f037b851d5f1798e11c2e6388fd8ff40b18352517396056146a5d40
MD5 7eb633186bc02ce758f098dd36d81916
BLAKE2b-256 0bc4dbff8babeb206254023a18bf88223a0a220479d11d7e6b0f91a910bfb69e

See more details on using hashes here.

File details

Details for the file flask_selfheal-1.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for flask_selfheal-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b476dea44220b3b6df48cf954e6829e8e87edea8c2df6af96f0a1f6d0d073dcd
MD5 38e7610f06f72e3dbc3777a9fce64e9d
BLAKE2b-256 a55a1af00f2fcec4ea2a329c6db8254c7baec245bbd75042eea6007e046a278c

See more details on using hashes here.

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