Python Pallets

Open-source Python projects categorized as Pallets

Top 6 Python Pallet Projects

  • Flask

    The Python micro framework for building web applications.

    Project mention: Rapid Prototyping with Flask, Bootstrap and Secutio | dev.to | 2024-01-30

    #!/usr/bin/python # # https://flask.palletsprojects.com/en/3.0.x/installation/ # from flask import Flask, jsonify, request contacts = [ { "id": "1", "firstname": "Lorem", "lastname": "Ipsum", "email": "[email protected]", }, { "id": "2", "firstname": "Mauris", "lastname": "Quis", "email": "[email protected]", }, { "id": "3", "firstname": "Donec Purus", "lastname": "Purus", "email": "[email protected]", } ] app = Flask(__name__, static_url_path='', static_folder='public',) @app.route("/contact//save", methods=["PUT"]) def save_contact(id): data = request.json contacts[id - 1] = data return jsonify(contacts[id - 1]) @app.route("/contact/", methods=["GET"]) @app.route("/contact//edit", methods=["GET"]) def get_contact(id): return jsonify(contacts[id - 1]) @app.route('/') def root(): return app.send_static_file('index.html') if __name__ == '__main__': app.run(debug=True)

  • click

    Python composable command line interface toolkit

    Project mention: click-web: Serve click scripts over the web (Python) | news.ycombinator.com | 2023-12-13

    Context: "click" - "Command Line Interface Creation Kit" - easily create CLIs from Python code, via adding decorators: https://github.com/pallets/click

    "click-web" in turn turns the click CLI app into a web app with one line of code.

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

  • Jinja2

    A very fast and expressive template engine.

  • Werkzeug

    The comprehensive WSGI web application library.

  • itsdangerous

    Safely pass trusted data to untrusted environments and back.

    Project mention: Blake2Signer: simple and straightforward library to securely sign data using BLAKE | /r/Python | 2023-04-11

    It is similar to itsdangerous in the sense that both achieve the same goal, but in very different ways.

  • MarkupSafe

    Safely add untrusted strings to HTML/XML markup.

NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020). The latest post mention was on 2024-01-30.

Python Pallets related posts

Index

What are some of the best open-source Pallet projects in Python? This list will help you:

Project Stars
1 Flask 66,108
2 click 14,925
3 Jinja2 9,881
4 Werkzeug 6,526
5 itsdangerous 2,813
6 MarkupSafe 592
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com