Metadata-Version: 2.1
Name: querycommander
Version: 0.5.1
Summary: Browser-based SQL Query Tool for Universal Database Management
Author-email: lnxusr1 <dist@querycommander.com>
License: MIT License
        
        Copyright (c) 2024 lnxusr1
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: Homepage, https://querycommander.com
Project-URL: Documentation, https://docs.querycommander.com
Project-URL: Repository, https://github.com/lnxusr1/query-commander.git
Project-URL: Issues, https://github.com/lnxusr1/query-commander/issues
Project-URL: Changelog, https://docs.querycommander.com/en/latest/changelog/
Keywords: database,dba,sql,mysql,postgresql,oracle,oracldb,mariadb,redshift
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: boto3
Requires-Dist: cryptography
Requires-Dist: PyYAML
Provides-Extra: oracle
Requires-Dist: oracledb; extra == "oracle"
Provides-Extra: mysql
Requires-Dist: mysql-connector-python; extra == "mysql"
Provides-Extra: mariadb
Requires-Dist: mysql-connector-python; extra == "mariadb"
Provides-Extra: postgres
Requires-Dist: psycopg; extra == "postgres"
Provides-Extra: redshift
Requires-Dist: psycopg; extra == "redshift"
Provides-Extra: redis
Requires-Dist: redis; extra == "redis"
Provides-Extra: ldap
Requires-Dist: ldap3; extra == "ldap"
Provides-Extra: all-dbs
Requires-Dist: oracledb; extra == "all-dbs"
Requires-Dist: psycopg; extra == "all-dbs"
Requires-Dist: mysql-connector-python; extra == "all-dbs"
Provides-Extra: all
Requires-Dist: oracledb; extra == "all"
Requires-Dist: psycopg; extra == "all"
Requires-Dist: mysql-connector-python; extra == "all"
Requires-Dist: redis; extra == "all"
Requires-Dist: ldap3; extra == "all"

# Query Commander &middot; [![GitHub license](https://img.shields.io/github/license/lnxusr1/query-commander)](https://github.com/lnxusr1/query-commander/blob/master/LICENSE) ![Python Versions](https://img.shields.io/pypi/pyversions/yt2mp3.svg) ![Read the Docs](https://img.shields.io/readthedocs/query-commander) ![GitHub release (latest by date)](https://img.shields.io/github/v/release/lnxusr1/query-commander)

Introducing **Query Commander**, the revolutionary *opensource* browser-based SQL tool designed for secure and efficient database management. 

![Basic Screenshot](https://github.com/lnxusr1/query-commander/blob/main/docs/images/screen_basic.png?raw=true)

## Features:

1. **Database Connectivity**
    - Support for multiple database types (Oracle, PostgreSQL, Redshift, MySQL, etc.)
    - Support for multiple server connections and heterogeneous targets

3. **Database Management**
    - Viewing of database objects
    - Browse Schemas
    - Data export capabilities
    - Explain Plain visualization

4. **Metadata Access**
    - View table structures, constraints, indexes, relationships, roles, and permissions
    - Generate ddl for views, materialized views, procedures, functions, and much more

5. **User Interface**
    - Intuitive, familiar, and user-friendly interface
    - Browser-based multi-tab and multi-window interface
    - SQL Editor: Custom SQL Execution and results display

6. **Enhanced Security**
    - Support for End-to-End Encryption
    - Multiple authentication options (Database login-based, LDAP/Active Directory)
    - Optional time-based rate limits for queries executed and/or total records retrieved by user
    - Advanced permissions management with "Persona proxies" and group-based authorization
    - Ideal for cloud-hosted and remote database server access
    - Support for AWS Secret Manager for secure credential storage and database server info

7. **Modern Hosting Options**
    - Traditional installation with CGI executions
    - Optional **Serverless** installation (AWS API Gateway, Lambda, S3, DynamoDB, and Secrets Manager)

## Installation

For local installations the easiest way to get started is to use pip as shown below:

``` shell
pip install querycommander
```

The above installs the basic software and only includes AWS integrations by default.  To install specific connectors or components use one or more of the following commands:

``` shell
# Database Connectors
pip install querycommander[postgres]
pip install querycommander[mysql]
pip install querycommander[oracle]
pip install querycommander[redshift]

# Other connectors
pip install querycommander[redis] # For Redis session token storage
pip install querycommander[ldap]  # For LDAP authentication

# Install everything in one command
pip install querycommander[all]
```

## Learn More

[Read the Documentation](https://docs.querycommander.com)
