dataset — Easy Examples
Simple database toolkit: SQLite/PostgreSQL/MySQL with a dict-like API
Getting started with dataset
Installation and basic usage of dataset.
python
# Install: pip install dataset import dataset # Basic dataset usage print(f"Using dataset") # See documentation for detailed examples
Expected Output
# Expected output shown below # (Run locally with: dataset)
dataset is a third-party package. Simple database toolkit: SQLite/PostgreSQL/MySQL with a dict-like API. Install with: pip install dataset
Common dataset operations
Frequently used features of dataset.
python
# Install: pip install dataset import dataset # Common dataset patterns print(f"dataset version: {dataset.__version__}")
These are the most commonly used features of dataset in everyday development.
Want to try these examples interactively?
Open Easy Playground