An open API service indexing awesome lists of open source software.

https://github.com/hoyirul/db-manager

This is a simple database manage for PostgreSQL databases. It allows you to connect to a database, view the tables, and view the data in the tables. You can also run SQL queries on the database.
https://github.com/hoyirul/db-manager

dbmanager flask jinja2 pgsql python3 query sql

Last synced: about 2 months ago
JSON representation

This is a simple database manage for PostgreSQL databases. It allows you to connect to a database, view the tables, and view the data in the tables. You can also run SQL queries on the database.

Awesome Lists containing this project

README

          

# DB Manager

## Description
This is a simple database manage for PostgreSQL databases. It allows you to connect to a database, view the tables, and view the data in the tables. You can also run SQL queries on the database.

## Installation
To install the database manager, simply clone the repository and run the following command:

```bash
$ python -m venv venv
$ source venv/bin/activate (Mac/Linux) or venv\Scripts\activate (Windows)
$ cp .env.example .env
$ pip install -r requirements.txt
$ python pgsql.py
```