RpRelPyDBRelational Python

Installation

Install RelPyDB

RelPyDB is installed directly from GitHub. PyPI publication is planned for a future release.

Install from GitHub

Use pip with the repository URL:

python -m pip install git+https://github.com/mandelreouven2002/RelPyDB.git
Note: If you use a virtual environment, activate it before running this command.

Install into a virtual environment

Best practice for any Python project:

# Create and activate a virtual environment
python -m venv .venv
source .venv/bin/activate   # macOS / Linux
.venv\Scripts\activate     # Windows

# Install RelPyDB
pip install git+https://github.com/mandelreouven2002/RelPyDB.git

Verify the installation

Run this one-liner to confirm RelPyDB imported correctly:

python -c "from relpy import RelPy; db = RelPy(); print('RelPyDB ready')"
Expected output
RelPyDB ready

Optional dependencies

RelPyDB's core has no required dependencies beyond the Python standard library. Some export functions require optional packages:

FeaturePackageInstall
to_pandaspandaspip install pandas
to_numpynumpypip install numpy
Encrypted columnscryptographypip install cryptography

Calling an export function without its package raises a descriptive ImportError.

Ready? Continue to the Start Here to run your first table in five minutes, or jump to the full documentation.