Skip to main content

Turn SQL results into beautiful JSON structures

Project description

Restruct is an easy light-weight formatting library that simplifies the process of representing SQL results in a human readable format (JSON). Pass the restruct method your SQL results and a formatting structure and voila, you have turned your complex SQL result into beautiful JSON. One of the best features of Restruct is squashing all the duplicate entries from SQL joins into a sub section of your JSON structure.

Usage examples

Lets assume we have an SQL join for a 1 to 1 relationship and that all the format variables used represent columns in the select tables.

SELECT user_id,
       user_level,
       level_name,
       first_name,
       last_name,
       email
  FROM users
  JOIN user_levels USING (user_level_id)

Formatting

An example format structure for results from the above query:

{
    ".single": true,
    ".key": "{user_id}",
    "id": ": {user_id}",
    "level": {
        "id": ": {user_level}",
        "name": ": {user_level_name}"
    },
    "name": {
        "first": ":< first_name",
        "last": ":< last_name",
        "full": "{first_name} {last_name}"
    },
    "email": true
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

restruct-0.2.0.tar.gz (4.2 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page