当前位置: 首页 > 软件库 > 数据库相关 > >

awesome-sqlalchemy

A curated list of awesome tools for SQLAlchemy
授权协议 Readme
开发语言 JavaScript
所属分类 数据库相关
软件类型 开源软件
地区 不详
投 递 者 松洛华
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

Awesome SQLAlchemy

A curated list of awesome extra libraries and resources for SQLAlchemy. Inspired byawesome-python. (See also other awesome lists!)

Licensed under a Creative Commons Attribution-ShareAlike 4.0 InternationalLicense.

Data Structures

SQLAlchemy-Continuum

Versioning and auditing extension for SQLAlchemy.

  • Creates versions for inserts, deletes and updates.
  • Does not store updates which don't change anything.
  • Supports alembic migrations.
  • Can revert objects data as well as all object relations at giventransaction even if the object was deleted.
  • Transactions can be queried afterwards using SQLAlchemy query syntax.
  • Query for changed records at given transaction.
  • Temporal relationship reflection. Version object's relationship showthe parent objects relationships as they where in that point in time.
  • Supports native versioning for PostgreSQL database (trigger basedversioning).
sqlalchemy_mptt
Library for implementing MPTT (modified preorder tree traversal) withSQLAlchemy models and working with trees of model instances,like django-mptt.
SQLAlchemy-ORM-tree
An implementation for SQLAlchemy-based applications ofthe nested-sets/modified-pre-order-tree-traversal technique forstoring hierarchical data in a relational database.
vdm
Versioned domain model. Python library for revisioning/versioning of databases.

Data Types

SQLAlchemy-Enum34
SQLAlchemy type to store standard enum.Enum values.
SQLAlchemy-Utc
SQLAlchemy type to store aware datetime.datetime values.
SQLAlchemy-Utils

Various utility functions, new data types and helpers for SQLAlchemy

  • Listeners
  • Data types: {..., ChoiceType, CountryType, JSONType, URLType, UUIDType, ...}
  • Range data types
  • Aggregated attributes
  • Generates decorator
  • Generic relationships
  • Database helpers: create_database, drop_database
  • Foreign key helpers
  • ORM helpers
  • Utility classes
  • Model mixins: Timestamp (created, updated times)

Database Migration Tools

Alembic
Alembic is a lightweight database migration tool for usage with theSQLAlchemy Database Toolkit for Python.
sqlalchemy-migrate
Inspired by Ruby on Rails' migrations, SQLAlchemy Migrate providesa way to deal with database schema changes in SQLAlchemy projects.

Dialects

https://docs.sqlalchemy.org/en/latest/dialects/

redshift_sqlalchemy
Amazon Redshift dialect for SQLAlchemy.
sphinxalchemy
SQLAlchemy dialect for iterfacing with Sphinx (search engine) viaSphinxQL.
GINO
An asynchronous PostgreSQL dialect for asyncpg, providing SQLAlchemycore support and its own asynchronous ORM interface.

Documentation

File and Image Attachments

filedepot
DEPOT is a framework for easily storing and serving files in webapplications. Depot features simple integration with SQLAlchemy by providingcustomized model field types for storing files attached to your ORMdocument.
SQLAlchemy-ImageAttach
SQLAlchemy-ImageAttach is a SQLAlchemy extension for attaching imagesto entity objects.
sqlalchemy-media
Based on SQLAlchemy-ImageAttach but using JSON type instead of relation,and SqlAlchemy's mutable facility, Also supports multiple stores per context.

Forms and Data Validations

ColanderAlchemy

ColanderAlchemy helps you to auto-generate Colander schemas that are basedon SQLAlchemy mapped classes.

Such Colander schemas can be used with libraries like Deform and helpsremove the need for duplication of schema definitions.

Flask-Validator
Data validator for Flask and SQL-Alchemy, working at Model componentwith events, preventing invalid data in the columns.The extension works with event listeners from SQLAlchemy.
FormAlchemy
FormAlchemy eliminates boilerplate by autogenerating HTML input fields from agiven model. FormAlchemy will try to figure out what kind of HTML code shouldbe returned by introspecting the model's properties and generate ready-to-useHTML code that will fit the developer's application.
WTForms-Alchemy
WTForms-Alchemy is a WTForms extension toolkit for easier creation ofmodel based forms. Strongly influenced by Django ModelForm.
Sprox
Sprox provides an easy way to create forms for web content which are:automatically generated, easy to customize, and validated. Sprox alsohas powerful tools to help you display your content the way you wantto with table and record viewers. Sprox provides a way to fill yourwidgets, whether they are forms or other content with customizable data.

Full-text Searching

SQLAlchemy-Searchable
Full-text searchable models for SQLAlchemy. Only supports PostgreSQL.
SQLAlchemy-FullText-Search
Fulltext search support with MySQL & SQLAlchemy.

GIS and Spatial Databases

GeoAlchemy

GeoAlchemy provides extensions to SQLAlchemy to work with spatial databases.

The current supported spatial database systems are PostGIS, Spatialite,MySQL, Oracle, and MS SQL Server 2008.

GeoAlchemy 2

GeoAlchemy 2 provides extensions to SQLAlchemy for working withspatial databases.

GeoAlchemy 2 focuses on PostGIS. PostGIS 1.5 and PostGIS 2 are supported.Spatialite is also supported, but using GeoAlchemy 2 with Spatialiterequires some specific configuration on the application side.

GeoAlchemy 2 aims to be simpler than its predecessor, GeoAlchemy.Simpler to use, and simpler to maintain.

Internationalizations

SQLAlchemy-i18n

Internationalization extension for SQLAlchemy models.

  • Stores translations in separate tables.
  • Reflects translation table structures based onparent model table structure.
  • Supports forcing of given locale.
  • Good performance (uses proxy dicts and other advanced SQLAlchemyconcepts for performance optimization).

Profilers

flask_debugtoolbar
Debug toolbar with SQLAlchemy query information for Flask.
pyramid_debugtoolbar
Debug toolbar with SQLAlchemy query information for Pyramid.
SQLTap

SQLTap is a library that allows you to profile and introspect the queriesthat your application makes using SQLAlchemy.

SQLTap helps you understand:

  • how many times a sql query is executed
  • how much time your sql queries take
  • where your application is issuing sql queries from
nplusone

Auto-detect the n+1 queries problem in SQLAlchemy (and other Python ORMs)

nplusone detects unnecessary queries caused by lazy loading and unused eager loading.Integrates with Flask-SQLAlchemy.

Query helpers

sqlakeyset

This library implements keyset-based paging for SQLAlchemy (both ORM and core).

This library has been tested with PostgreSQL and MariaDB/MySQL.It should work with other SQLAlchemy-supported databases to provided they support row( syntax.

Recipes

Serialization and deserialization

marshmallow-sqlalchemy
SQLAlchemy integration with the marshmallow (de)serialization library.
sqlalchemy-dict
SQLAlchemy extension for interacting models with python dictionary.

Testing

charlatan
Fixtures management for SQLAlchemy and other systems.
factory_boy
Generate fake data and create random fixtures for testing in SQLAlchemyand many other Python ORM systems.
mixer
Generate fake data and create random fixtures for testing in SQLAlchemyand many other Python ORM systems.

Thin Abstractions

Dataset
Easy-to-use data handling for SQL data stores in Python with support forimplicit table creation, bulk loading, and transaction. Dataset alsoincludes support for freezing data to CSV and JSON flat files.
rdflib-sqlalchemy
RDFLib store using SQLAlchemy dbapi as back-end.
SQLSoup
SQLSoup provides a convenient way to map Python objects torelational database tables, with no declarative code of any kind.It's built on top of the SQLAlchemy ORM and provides a super-minimalisticinterface to an existing database.

Vendor-specific Extensions

PostgreSQL

Flask-SQLAlchemy-PGEvents
Flask extension that uses SQLAlchemy and psycopg2-pgevents toenable event listeners tied into database-layer triggers.
sqlalchemy-crosstab-postgresql
New grammar for SQLAlchemy to make handling the crosstab() tablefunc(i.e. pivot tables) in PostgreSQL easy peasy.
sqlalchemy-postgres-copy
Wrapper for using PostgreSQL COPY with SQLAlchemy for efficient bulk dataimports and exports.

Visualizations

sadisplay
Simple package for describing SQLAlchemy schema and display raw database tables by reflecting feature.
sqlalchemy_schemadisplay
This module generates images from SQLAlchemy models.
eralchemy
ERAlchemy generates Entity Relation (ER) diagram from databases or from SQLAlchemy models.

Web

Framework Integrations

bottle-sqlalchemy
A Bottle plugin to manage SQLAlchemy session to your application.
filteralchemy
Declarative query builder that auto-generates filter parameters frommodels and parses request parameters using marshmallow-sqlalchemyand webargs.
Flask-SQLAlchemy
Flask-SQLAlchemy is an extension for Flask that adds support forSQLAlchemy to your application.
Flask-Admin
The admin interface framework for Flask.With scaffolding for SQLAlchemy, MongoEngine, pymongo and Peewee.
pyramid_sqlalchemy
pyramid_sqlalchemy provides everything needed to use SQLAlchemy in Pyramid applications.
pyramid_restler
pyramid_restler is a somewhat-opinionated toolkit for buildingRESTful Web services and applications on top of thePyramid framework (with SQLAlchemy models).
sacrud
SACRUD will solve your problem of CRUD interface for SQLAlchemy,by providing extension for Pyramid (yet) or use it in pure form.Unlike classical CRUD interface, pyramid_sacrud allows override andflexibly customize interface (that is closer to django.contrib.admin).
SQLA-wrapper

A light and framework-independent wrapper for SQLAlchemy that makesit really easy to setup and use.

  • Doesn't change the SQLAlchemy syntax.
  • Can paginate the results of the queries.
  • Support for muliple databases at the same time.
zope.sqlalchemy
The aim of this package is to unify the plethora of existing packagesintegrating SQLAlchemy with Zope's transaction management.As such it seeks only to provide a data manager and makes no attemptto define a zopeish way to configure engines.

Other

paginate_sqlalchemy
This module helps dividing large lists of items into pages.The user is shown one page at a time and can navigate to other pages.
sandman2
Generate a curl-able REST HTTP API with searching and filteringfor all tables in a database and an admin UI with Flask-SQLAlchemyand HTTP Basic Authentication.
sqlalchemy_mixins
A set of well-tested mixins that brings Active Record, Django-like queries, nested eager load and beauty __repr__ to your SQLAlchemy.
  • 1、首先确保安装了 mysql-connector 模块     pip install mysql-connector 2、将 engine = create_engine('mysql+mysqlconnector://root:888@localhost:3306/awesome')  改成: engine = create_engine('mysql+pymysql://root:888@

 相关资料
  • Awesome Awesome Node.js A curated list of awesome lists that are about or related to Node.js. Inspired by the awesome list thing, going deeper down the rabbit hole. �� Meta stuff about this awesome li

  • A curated list of awesome things related to Vite.js This awesome list is for Vite 2.x and onward. Vite 1.x's list is archived. Resources Official Resources 文档 GitHub Repo Release Notes Vue 3 Docs Awes

  • Awesome Python 是一个资源整理集合,由 vinta 发起和维护。内容包括:Web框架、网络爬虫、网络内容提取、模板引擎、数据库、数据可视化、图片处理、文本处理、自然语言处理、机器学习、日志、代码分析等。 这个系列没有推荐 Python 书籍、经典博文、交互教程,所以另外推荐:《25本免费的Python电子书》、《学习Python编程的11个(教程)资源》、《PythonMonk:Py

  • Font Awesome 是一个图标工具包。其已经被重新设计并从头构建。除此之外,还增加了一些功能,比如 icon font ligature、SVG 框架、流行的前端库(如 React)的官方 NPM 包,以及对新 CDN 的访问。Font Awesome 已扩展至 7,865 个图标。

  • awesome-android 收录了来自 github 或其他网站的关于 Android 的大部分库。

  • The Lithe Project Development Team Awesome CryptoNote A curated list of awesome CryptoNote open-source blockchains, resources, projects, and shiny other things related.Many projects are derived from f

  • Guidelines for Hacktoberfest 2021: About Hacktoberfest: Hacktoberfest is organised by DigitalOcean in partnership with Dev, Intel, DeepSource & Appwrite. It is a month-long celebration of open-source

  • Curated list of awesome neuroscience libraries, software and any content related to the domain. Neuroscience is the study of how the nervous system develops, its structure, and what it does. Neuroscie