Skip to content

GSP and SQLFlow Documentation

Welcome to the GSP (Generic SQL Parser) documentation. This site provides comprehensive information about GSP's features, capabilities, and usage.

Documentation Sections

Quick Start

To get started with the GSP documentation locally:

  1. Clone the repository:

    git clone https://github.com/yourusername/sqlflow_public.git
    cd sqlflow_public/site-docs
    

  2. Create and activate a virtual environment:

    python -m venv .venv
    source .venv/bin/activate  # Linux/Mac
    .venv\Scripts\activate     # Windows
    

  3. Install dependencies:

    pip install -r requirements.txt
    

  4. Start the documentation server:

    mkdocs serve
    

  5. Open your browser to http://127.0.0.1:8000/ to view the documentation.

About GSP

GSP (Generic SQL Parser) is a powerful SQL parsing library that supports multiple database dialects, providing accurate SQL parsing, analysis, and transformation capabilities.