Alexandru Coca

Python - URL Shortener

URL Shortener GIF

URL Shortener

This Python web application allows users to shorten long URLs into easy-to-share links. It uses a simple interface to input URLs and generate shortened versions stored in a SQLite database.

Key Features:

def generate_short_url():
    """Generate a random short URL."""
    # Implementation...

@app.route('/<short_url>')
def redirect_url(short_url):
    """Redirect to the original URL."""
    # Implementation...

For the full code, please visit the repository: URL Shortener