Skip to main content

A Django module for execute custom sql query in a .sql file

Project description

# django-query-execfile
**Django module for execute sql query in a file**

[![pypi-version]][pypi]

Full documentation for the project is available at []

---

**Note**:


---

# Overview

django-query-execfile is a simple library for execute .sql query file.
Espesialy


# Requirements

* Python (2.7.x )
* Django (1.5+ )

# Installation

Install using `pip`...

pip install django-query-execfile


# Usage & Example

This is content of a .sql file

#sum_customerPayment_amount_rate_exchanged_group_by_day
SELECT
DATE(customerPayment.created) AS created,
SUM(transaction.amount * transaction.exchange_rate) AS amount_exchanged
FROM shop_module_customerpayment customerPayment
LEFT JOIN shop_module_transaction transaction ON transaction.id = customerPayment.transaction_id
WHERE (customerPayment.created BETWEEN %(from_date)s AND %(to_date)s)
GROUP BY DATE(customerPayment.created);


Usage example

from query_execfile import sql_execfile

sql_execfile(cursor,
'../datagrip/payment_transaction_stats.sql'),
{'from_date': .., 'to_date': ..},
mapResultToDict=True,
includeDescription=True
)

**mapResultToDict=True** will map results to a dict with key = first comment above the query.
So you can write multiple query in a single file and execute these query at once.

**includeDescription=True** will add a extra row at first as column header using description from the query.
In this case is _AS created_ and _AS amount_exchanged_


**Result return of that example:**

{"sum_customerPayment_amount_rate_exchanged_group_by_day": [
[
"created",
"amount_exchanged"
],
[
"2016-03-01",
4933000.0
],
[
"2016-03-02",
7144000.0
],
...
...
...
[
"2016-03-10",
2110000.0
]
],}


# Documentation & Support


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

django-query-execfile-0.2.tar.gz (3.9 kB view details)

Uploaded Source

File details

Details for the file django-query-execfile-0.2.tar.gz.

File metadata

File hashes

Hashes for django-query-execfile-0.2.tar.gz
Algorithm Hash digest
SHA256 65affdbe1c07d5ba84ccca405afe7d8e4a1b09ffc86888bce3c9ebb251329c80
MD5 e342b4c985bdaa5dcd95a9a307db54e9
BLAKE2b-256 f5b2fed38126f5ad57a22de9d36d36126b8446600eadc7e74956fe57d1050b39

See more details on using hashes here.

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