Make Your Company Data Driven. Connect to any data source, easily visualize, dashboard and share your data.
-
Updated
Apr 9, 2022 - Python
{{ message }}
PostgreSQL is a database management system that is object-relational. PostgreSQL originated from the Ingres project at the University of California, Berkeley.
Make Your Company Data Driven. Connect to any data source, easily visualize, dashboard and share your data.
Postgres CLI with autocompletion and syntax highlighting
Full stack, modern web application generator. Using FastAPI, PostgreSQL as database, Docker, automatic HTTPS and more.
macOS development environment setup: Easy-to-understand instructions with automated setup scripts for developer tools like Vim, Sublime Text, Bash, iTerm, Python data analysis, Spark, Hadoop MapReduce, AWS, Heroku, JavaScript web development, Android development, common data stores, and dev-based OS X defaults.
A fast PostgreSQL Database Client Library for Python/asyncio.
A template for PostgreSQL High Availability with Etcd, Consul, ZooKeeper, or Kubernetes
Continuous Archiving for Postgres
Pony Object Relational Mapper
Example of usage:
users = await User.filter(first_name__ilike="c%r")
I know this can be done with startswith and endswith, but there are cases where using the LIKE operator is better:
users = await User.filter(first_name__ilike="j_r%")
This would be used to match Jeremy, Jorge, Jordan...
I am using PG server in a certificate pinned environment. In Python / SQLAlchemy, this is the following code needed to connect:
pg_certs = {
'sslcert': 'certs_dir/client-cert.pem',
'sslkey': 'certs_dir/client-key.pem',
'sslrootcert': 'certs_dir/server-ca.pem',
}
create_engine(pg_url, connect_args={'sslmode': 'require', **pg_certs}, ...)
Does Migra support this? I
A lightweight opinionated ETL framework, halfway between plain scripts and Apache Airflow
Backend logic implementation for https://github.com/gothinkster/realworld with awesome FastAPI
Expressive analytics in Python at any scale.
pg_activity is a top like application for PostgreSQL server activity monitoring.
Barman - Backup and Recovery Manager for PostgreSQL
aiopg is a library for accessing a PostgreSQL database from the asyncio
PostgreSQL® backup and restore service
Docker 基本教學 - 從無到有 Docker-Beginners-Guide 教你用 Docker 建立 Django + PostgreSQL
Highly available elephant herd: HA PostgreSQL cluster using Docker
Entity Relation Diagrams generation tool
Baserow is an open source no-code database tool and Airtable alternative. This is a mirrored repository, the official one is hosted on https://gitlab.com/bramw/baserow.
It would be nice if there was a new clause which can be added to queries called callback.
For example:
def callback_handler(success, value):
if success:
print(f'The query was successful and returned {value}')
else:
print("The query failed")
Band.select().callback(callback_handler).run_sync()The callback could be a function or coroutine, wh
Research. Shared.
New generation PostgreSQL database adapter for the Python programming language
Created by Michael Stonebraker
Released July 8, 1996
Introduction📝 📈 🔧 🏗️
This tutorial should go over training a model using MindsDB that predicts
Machine Failure. Example dataset can be found here.Tutorial summary🧾
The tutorial should follow the below steps🔢 :