sqldf for pandas
Project description
DISCLAIMER
This project is not maintained. It is merely a fork of yhat/pandasql and all credit goes to the group. This fork just resolves an issue of compatibility with SQLAlchemy v2.x.x. A PR was requested for this to be included in the main pandasql project but it seems to be dormant. This sparked the creation of this fork.
pansql
pansql allows you to query pandas DataFrames using SQL syntax. It works
similarly to sqldf in R. pansql seeks to provide a more familiar way of
manipulating and cleaning data for people new to Python or pandas.
Installation
$ pip install -U pansql
Basics
The main function used in pansql is sqldf. sqldf accepts 2 parametrs
- a sql query string
- a set of session/environment variables (
locals()orglobals())
Specifying locals() or globals() can get tedious. You can define a short
helper function to fix this.
from pansql import sqldf
pysqldf = lambda q: sqldf(q, globals())
Querying
pansql uses SQLite syntax. Any pandas
dataframes will be automatically detected by pansql. You can query them as
you would any regular SQL table.
$ python
>>> from pansql import sqldf, load_meat, load_births
>>> pysqldf = lambda q: sqldf(q, globals())
>>> meat = load_meat()
>>> births = load_births()
>>> print pysqldf("SELECT * FROM meat LIMIT 10;").head()
date beef veal pork lamb_and_mutton broilers other_chicken turkey
0 1944-01-01 00:00:00 751 85 1280 89 None None None
1 1944-02-01 00:00:00 713 77 1169 72 None None None
2 1944-03-01 00:00:00 741 90 1128 75 None None None
3 1944-04-01 00:00:00 650 89 978 66 None None None
4 1944-05-01 00:00:00 681 106 1029 78 None None None
joins and aggregations are also supported
>>> q = """SELECT
m.date, m.beef, b.births
FROM
meats m
INNER JOIN
births b
ON m.date = b.date;"""
>>> joined = pyqldf(q)
>>> print joined.head()
date beef births
403 2012-07-01 00:00:00 2200.8 368450
404 2012-08-01 00:00:00 2367.5 359554
405 2012-09-01 00:00:00 2016.0 361922
406 2012-10-01 00:00:00 2343.7 347625
407 2012-11-01 00:00:00 2206.6 320195
>>> q = "select
strftime('%Y', date) as year
, SUM(beef) as beef_total
FROM
meat
GROUP BY
year;"
>>> print pysqldf(q).head()
year beef_total
0 1944 8801
1 1945 9936
2 1946 9010
3 1947 10096
4 1948 8766
More information and code samples available in the examples folder or on our blog.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pansql-0.0.1.tar.gz.
File metadata
- Download URL: pansql-0.0.1.tar.gz
- Upload date:
- Size: 28.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
61091112442c5d663ea5c042b6327a9b6b94c6687831677dddda46f292532e29
|
|
| MD5 |
303de25dbf899b9bef876c42ff6d3ea7
|
|
| BLAKE2b-256 |
1226fafa39d5151df3a85efe9accb90ea3a623c9eaff172ca0b8f0ded7f2e521
|
File details
Details for the file pansql-0.0.1-py3-none-any.whl.
File metadata
- Download URL: pansql-0.0.1-py3-none-any.whl
- Upload date:
- Size: 26.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c49d8c23e418ac065af767ed350c544c0d6d96dc04e2faa1f8b37851d404988
|
|
| MD5 |
972afe1a56d89b4e1aefd45aa0df29f3
|
|
| BLAKE2b-256 |
a250ced561687339206d3de7ffb6d4e7d3e4c80e218dc7808cd662ff0dec5d1a
|