Skip to content

Commit

Permalink
fix example in README page
Browse files Browse the repository at this point in the history
  • Loading branch information
stonebig committed Nov 12, 2014
1 parent 2f87e31 commit cdef112
Showing 3 changed files with 3 additions and 58 deletions.
56 changes: 0 additions & 56 deletions README.md

This file was deleted.

1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -43,6 +43,7 @@ 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']
4 changes: 2 additions & 2 deletions baresql/baresql.py
Original file line number Diff line number Diff line change
@@ -89,8 +89,8 @@ def __init__(self, connection="sqlite://", keep_log = False,
keep_log = keep log of SQL instructions generated
cte_inline = inline CTE for SQLite instead of creating temporary views
"""
self.__version__ = '0.7.0'
self._title = "2014-11-11a : 'I Need this !'"
self.__version__ = '0.7.1'
self._title = "2014-11-12a : 'I Need this !'"
#identify sql engine and database
self.connection = connection
if isinstance(self.connection, (type(u'a') , type('a'))):

0 comments on commit cdef112

Please sign in to comment.