Metadata-Version: 2.1
Name: baresql
Version: 1.0.0
Summary: playing SQL directly on Python datas
Keywords: sqlite,sql
Author-email: stonebig <write_pull_requests_to_stonebig@github.com>
Description-Content-Type: text/x-rst
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Requires-Dist: pandas
Project-URL: Source, https://github.com/stonebig/baresql
Project-URL: homepage, https://github.com/stonebig/baresql

baresql : playing SQL directly on Python datas
==============================================

baresql improves sql agility of python data science beginners by :
 * allowing sql over python objects (list, ranges, ...) and SQL Tables,
 * requiring no special module except : pandas. 

Inspiration :
-------------

* pypi.python.org/pypi/pandasql : sqldf for pandas
 
* pypi.python.org/pypi/ipython-sql :  sql magic in Ipython


Features
--------

* query lists , tuple, dictionnaries, dataframes 

* result as a dataframe, list of records, or list

* basic Common Table Expression support on old python3.3- versions


Installation
------------

You can install, upgrade, uninstall sqlite_bro.py with these commands::

  $ pip install baresql
  $ pip install --upgrade baresql
  $ pip uninstall baresql

or just launch it from IPython with %load https://raw.githubusercontent.com/stonebig/baresql/master/baresql/baresql.py

Basic Example 
-------------

::

  from __future__ import print_function, unicode_literals, division  # if Python2.7
  from baresql import baresql
  bsql = baresql.baresql(keep_log = True )
  bsqldf = lambda q: bsql.df(q, dict(globals(),**locals()))
  
  users = ['Alexander', 'Bernard', 'Charly', 'Danielle', 'Esmeralda', 'Franz']
  #  We use the python 'users' list like a SQL table
  sql = "select 'Welcome ! ' , c0 from users$$"
  bsqldf(sql)
 

Examples
--------
http://nbviewer.ipython.org/github/stonebig/baresql/blob/master/examples/baresql_with_cte.ipynb

Links
-----

* `Fork me on GitHub <http://github.com/stonebig/baresql>`_
