Quibble, a Damn Small Query Langauge (DSQL) Using Python
December 24, 2009
This intermediate-level article will demonstrate how do use the filter idiom, delegation tables, list generators and the operator module to create a compact but expandable query langauge for querying data.
When many people hear the word ‘query’, their minds jump to Structured Query Language (SQL). Now I love SQL as much as anyone[1]. Using SQL for queries is wonderful when one’s data is already loaded into a SQL database[2]. Sometimes the Real World (TM) conspires against this, since:
- the data might be heterogeneous
- the data might be easy to express in Python terms, but tedious to refector into a normalized form. As a quick example, consider a dict of sets, which would require a join and a foreign key and actual *gasp* schema design.
- one might not have access to a database (though with SQLite being embedded in Python from 2.5 onward, this is less an issue)
- one might have irrational biases against schemas and the straightjacketing that they impose on agile development, and programmer whimsy. I suffer from this bias myself, and attend regular SQL indoctination meetings, but so far it’s not sticking! NoSQL Forever!
- SQL is enterprisey, but not Web2.0, man!
That said, SQL has lots of advantages:
- Exteremely flexible, complex querying
- Widely deployed
- (etc, etc.)
Let’s begin by building a list of dictionaries to query against. These could be any list of object that support a dictionary interface. Note that these objects are heterogeneous. Also note they are quite contrived, and rather boring.
# a list of dicts to query against
data = [
dict(a=None, b=1, c=[1,2,3]),
dict(a=13, d=dict(a=1,b=2)),
dict(c=13,e="some string"),
dict(c=10,e="some other string"),
dict(a=10,e="some other string"),
{('author','email'): ('Gregg Lind','gregg.lind at fakearoo.com')},
]
Now that we have some data, we’re going to build a simple query language called Quibble [3] to search against it. We will be using the filter/pipeline idiom. The filter idiom is quite simple: if the an object matches some condition, keep it; else continue on. On Unix, this is a very simple type of pipeline; when one wants venture capital, call it “map-reduce”. While Python has a filter function (http://docs.python.org/library/functions.html#filter), the list comprehension builtin will be quite a bit simpler to use for our dumb purposes.
Next we will build a delegation table. This simple mapping maps names like “<=” to functions. When people talk about the power of ‘functions are first-class objects’, which is part of what they’re on about. We can make this mapping of function shorthand names mapped to *unevaluated functions*.
To make our lives easier, Quibble will use a simple convention for defining what is a valid query operator. An ‘operator function’ must take exactly two argument, following this format:
my_operator(some_dict[key], value)
Luckily for us [4], the functions in the python operator module http://docs.python.org/library/operator.html mostly take this form. Having this same calling convention will make it possible to just drop the ‘right’ function in.
import operator
operators = {
"<" : operator.lt,
"<=" : operator.le,
"==" : operator.eq,
"!=" : operator.ne,
">=" : operator.ge,
">" : operator.gt,
"in" : operator.contains,
"nin" : lambda x,y: not operator.contains(x,y),
}
Note that with ‘nin’, we had to wrap it. Python’s lambda statement makes this easy, and the resulting code is still easy-to-read. We could also use a true named function here, like this:
def nin_(x,y):
return x not in y
Or a simpler lambda:
"nin" : lambda x,y: x not in y,
def query(D,key,val,operator="=="):
'''
D: a dictionary
key: the key to query
val: the value
operator: "==", ">=", "in", et all.
Returns elements in D such that operator(D.get(key,None), val) is true
'''
try:
op = operators[operator]
except KeyError:
raise ValueError, "operator must be one of %r" % operators
return [x for x in D if op(x.get(key,None),val)]
print "1st version"
print query(data,'a',1)
print query(data,'c',None,'!=')
Excellent. Time to retire to a private island. Oh wait, you want to define new functions? Chain these queries together? It should handle exceptions? We can fix those.
A more fundamental problem with this filter approach is that defining “or” conditions is quite awkward, since filters reduce the input set at each stage, but we will clean this up as well (but it will be ugly).
Let’s add some functionality.
- operator can be any two argument function
- return an iterator instead of a list
- tee the original input, just in case it too is an iterator, we don’t want to exhaust it.
-
adds a keynotfound argument, to change what happens if the key isn't found in the dict
import itertools
import inspect
def _can_take_at_least_n_args(f,n=2):
''' helper to check that a function can take at least two unnamed args'''
(pos, args,kwargs, defaults) = inspect.getargspec(f)
if args is not None or len(pos) >= n:
return True
else:
return False
def query(D,key,val,operator="==", keynotfound=None):
'''
D: a list of dictionaries
key: the key to query
val: the value
operator: "==", ">=", "in", et all, or any two-arg function
keynotfound: value if key is not found
Returns elements in D such that operator(D.get(key,None), val) is true
'''
D = itertools.tee(D,2)[1] # take a teed copy
# let's let operator be any two argument callable function, *then*
# fall back on the delegation table.
if callable(operator):
if not _can_take_at_least_n_args(operator,2):
raise ValueError ("operator must take at least 2 arguments")
# alternately, we could wrap it in a lambda, like:
# op = lambda(x,y): operator(x),
# but we have to check to see how many args it really wants (inc. 0!)
op = operator
else:
op = operators.get(operator,None)
if not op:
raise ValueError, "operator must be one of %r, or a two-argument function" % operators
def try_op(f,x,y):
try:
ans = f(x,y)
return f(x,y)
except Exception, exc:
return False
return (x for x in D if try_op(op, x.get(key,keynotfound),val))
print "2nd version"
print list(query(data,'a',1))
print list(query(data,'c',None,'!='))
at_fakaroo = lambda k,v: "fakearoo" in k[1] # v will be irrelevant
print list(query(data, ('author','email'), None, at_fakaroo, keynotfound=('','')))
That is looking quite a bit more powerful! It still has lots of problems:
- ‘or’ isn’t well supported.
- we handle all errors in the function equivalently — by eating them! This will make it really hard to debug, since none of us writes perfect code.
- chaining queries is doable via nesting, but it’s ugly (see below).
- relies on the dictionary interface
- awkward to peer inside nested components
- doesn’t handle attribute lookup easily (but could be modified to, using getattr http://docs.python.org/library/functions.html#getattr)
Let’s try to make a “Queryable” object that chains operations via method calls (something like
SQLAlchememy generative selects http://www.sqlalchemy.org/docs/05/sqlexpression.html#intro-to-generative-selects-and-transformations):
class Queryable(object):
def __init__(self,D):
self.D = itertools.tee(D,2)[1]
def tolist(self):
return list(itertools.tee(self.D,2)[1])
def query(self,*args,**kwargs):
return Queryable(query(self.D,*args,**kwargs))
q = query
print "3rd version, Queryable"
# c > 10 and "other" in e
Q = Queryable(data).q('c',8,'>')
print Q.tolist()
Q = Q.q('e', 'other', 'in')
print Q.tolist()
This is OKAY, and but it still has plenty of codesmell.
- lots of tee madness
- ugly “tolist” method
- we’re the query optimizer… we’re guaranteed that at least one pass will be O(n), since there is no indexing, and no smarts at all in the querying.
Next steps / alternatives:
- Use ifilter, starmap from itertools http://docs.python.org/library/itertools.html instead of a comprehension
- Use functools http://docs.python.org/library/functools.html
- Give up on all this absurdity, and just use MongoDB, which has a well-defined, and ambitious query language! http://www.mongodb.org/display/DOCS/Advanced+Queries
Knowing when to give up!
Like any domain specific language, Quibble (as written here) walks a very fine line between functionality and complexity (okay it stumbles over the line drunkenly, but not by too much!) If we need much more complexity in our queries (or object model) then we’re back to writing python, and investigating a proper solution (SQL, Mongo, etc.) is probably worthwhile! For a simple reporting language, or debugging, or a simple command line interface, this might be plenty.
Happy Yule!
Notes:
1. Not true, I hate it.
2. Unless it’s super complex to query, involves lots of joins, or the query optimizer is off drunk at the pub, or stars are poorly aligned.
3. Quibble — from Query Bibble, Bibble being an ancient Etruscan word for a teething ring.
4. Well, actually, not lucky at all. Like most scientific papers, this article pretends that inquiry is orderly. I knew that I wanted to talk about the operator module, and most of the functions in operator take this form, so it seems like a sensible first-approximation convention.
Two Simple Tips to Speed up Python Time Parsing
October 12, 2009
- Sometimes, date parsing formatting in Python takes a long time. It can be worth writing custom datestring converters to sacrifice generality for speed.
- Another oddity: setting the timezone by force can speed up code as well, like this: os.environ['TZ'] = ‘GMT’
Both tips are demo’d and tested in the code snipped below.
import os
import time
def _convert_date(string, year=None):
''' take a log string, turn it into time epoch, tuple, string
>>> _convert_date2('Aug 19 13:45:01',2009)
(1250689501, (2009, 8, 19, 13, 45, 1, 2, 231, 0), 'Aug 19 13:45:01')
'''
if year is None: year = time.gmtime()[0]
# was, but this profiled 4x slower
tt = list(time.strptime("%s " % year + string, "%Y %b %d %H:%M:%S"))
tt[-1] = 0 # turn off timezone
tt= tuple(tt)
ts = int(time.mktime(tt))
return (ts,tt,string)
_months = dict(jan=1,feb=2,mar=3,apr=4,may=5,jun=6,jul=7,aug=8,sep=9,oct=10,nov=11,dec=12)
def _convert_date2(string, year=None):
''' take a log string, turn it into time epoch, tuple, string
>>> _convert_date2('Aug 19 13:45:01',2009)
(1250689501, (2009, 8, 19, 13, 45, 1, 2, 231, 0), 'Aug 19 13:45:01')
'''
if year is None: year = time.gmtime()[0]
# was, but this profiled 4x slower
#tt = list(time.strptime("%s " % year + x, "%Y %b %d %H:%M:%S"))
mon,d,t = string.split()
h,m,s = t.split(":")
mon = _months[mon.lower()]
tt = [year, mon,d,h,m,s,0,0,0]
tt = tuple([int(v) for v in tt])
ts = int(time.mktime(tt))
tt = time.gmtime(ts)
return (ts,tt,string)
assert _convert_date('Aug 19 13:45:01',2009) == _convert_date2('Aug 19 13:45:01',2009)
#%timeit is an ipython macro that is like timeit.Timer with brains!
# including figuring out how many loops to run heuristically
# key fact: a microsecond is 1000 nanoseconds
timeit _convert_date('Aug 19 13:45:01',2009)
timeit _convert_date2('Aug 19 13:45:01',2009)
os.environ['TZ'] = 'GMT'
timeit _convert_date('Aug 19 13:45:01',2009)
timeit _convert_date2('Aug 19 13:45:01',2009)
Results (Python 2.4.3 on x64 Linux):
timeit _convert_date(‘Aug 19 13:45:01′,2009)
10000 loops, best of 3: 62 µs per loopIn [11]: timeit _convert_date2(‘Aug 19 13:45:01′,2009)
10000 loops, best of 3: 18.3 µs per loopIn [12]: os.environ['TZ'] = ‘GMT’
In [13]: timeit _convert_date(‘Aug 19 13:45:01′,2009)
10000 loops, best of 3: 60.2 µs per loopIn [14]: timeit _convert_date2(‘Aug 19 13:45:01′,2009)
100000 loops, best of 3: 13.3 µs per loop
The Win Factor:
- custom parser: 300%
- setting TZ: 20%
Feedback and additional speedup improvements welcome.
(Thanks to Jon Nelson; of the Pycurious Blog for the TZ idea)
No Geek Bulls**t Programming Class (Results so Far)
October 9, 2009
The Project
Create an accessible ‘learn to program’ class, using Python. Undo damage and barriers to access around geek culture, endemic sexism and racism, and models that say that “only certain people can program”.
Results So Far
So far there have been two class sessions. The gender mix (self-identified) is about 50/50/0 male/female/(genderqueer, intersex) and we have 10 students or so. The self-identified goals of students included: building programs for work, changing careers, remedying previous bad programming class experiences, (rarer) learning python specifically (after knowing some other language).
Lessons Learned (and some Theories)
# Make the class accessible
- No alpha male bulls**t
- No pissfighting over languages, programming backgrounds, etc. remember, even experts start as newbies.
- create safer, accessible spaces (physically accessible, make childcare credits available, advertise to underserved communities. avoid gender / sexuality assumptions, respect pronouns. Enforce safer space.)
# emotions matter in the learning experience
- acknowledge the complexity of programming
- programmers are made, not born
- programming is hard to do, hard to learn
- explain that it was hard for you to learn as well.
- remind learners that making mistakes is how one learns to program
# Start far back. Go back further. Most students know little about how the computer works.
- they haven’t seen / heard of / used the command line / terminal
- they don’t know the difference between the shell and the python environment
- they try things like ” >>> python program.py “
- there will be mac and windows users, prepare for both
- some learners will have programmed before, some will not
# Have a goal / main project for the course
- connect with students.
- build toward a full project
- lessons should iteratively replace / improve / expand on code made during previous lessons
- no math. Math algorithms are boring and irrelevant for most people. Python makes strings easy. Easy strings makes for easy to discuss, real-world data
# Don’t get bogged down in syntax. People don’t care. Python has awesome syntax, mostly.
- Gloss over warts and complexities
- Avoid jargon
# Don’t get bogged down in datatypes. Don’t mention unicode. Ignore tuples.
- Do mention strings, “numbers” (encompassing ints and floats)
- dictionaries before lists. Associating keys and values parallels associating variable names with values. After teaching dicts, lists are trivial.
# relate functions and data structures. They are intertwined and need to be taught in parallel.
- Functions exist to process data structures, and data exist to feed functions
# Ignore Objects and Object-Oriented Programming
- OO isn’t hard, but it is confusing, especially for newbies
- More importantly, it’s *irrelevant* for most early programming tasks
# Now matters more than Complete
- Use Wikibooks or Google Docs for ease in sharing materials. (if repeating, we might choose GDocs — Wikibooks is too much machinery)
- Don’t worry about getting all the details right
# POWERPOINT IS DEATH
Bits and Bites — Programming First Steps (free class)
September 13, 2009
After reading Kirrily Roberts’ OSCON Keynote, and links from there to
GeekFeminism (a via Lindsey Kuper), I’ve been riled up about barriers to access in the programming community. I come from a non-traditional programming background (more on that in later journals), and had a lot of baggage about the mystique of programming. So, a friend and I decided to do something about it, and have some free classes for non-traditional programmers through the Twin Cities Experimental College.
Bits and Bites — Programming First Steps
When Great Features Aren’t Enough: Twisted, Tornado, the Zero-Step, and Activation Energy
September 12, 2009
Fresh on the heels of Tornado’s release, and Glyph’s response to it (note 1) and others, I’ve been thinking about why Tornado so excites me.
Twisted is a robust, powerful, scalable asynchronous web framework (among other things). We have used it successfully in the past. Taking them at their word, Tornado is scalable, but focused on http and much less fully featured than Twisted, it does provide authentication pieces (awesome!), and some other utilities. In architectural terms, Glyph is probably right that Tornado is incomplete (to be polite).
I still want to use Tornado.
Installing PlPython (Postgres 8.1 on Centos 4)
July 27, 2009
I kept getting this sort of error from createlang (PG 8.1 on Centos 4 — from when dinosaurs walked). I tried this:
$ sudo yum install postgresql-python.x86_64
But this wasn’t enough to get createlang going.
$ sudo -u postgres createlang plpythonu mydb
Password:
createlang: language installation failed: ERROR: could not access file "$libdir/plpython": No such file or directory
It turns out that there is a non-obvious dependency:
$ sudo yum install postgresql-python.x86_64 postgresql-pl.x86_64
$ sudo -u postgres createlang --echo plpythonu test3
SELECT oid FROM pg_catalog.pg_language WHERE lanname = 'plpythonu';
CREATE LANGUAGE "plpythonu";
Thus, postgresql-pl.x86_64 is a sooper sekrit dependency.
Good luck!
(ps.: createlang --echo is useful)
(Simple) Read-Only SqlAlchemy Sessions
July 16, 2009
The Right Way™ to make database access read-only is to create a read-only user. So, why not just Do It Right™ ?
- Not all databases (eyes at you Sqlite!) support these fancy “users”
- Sometimes creating this second user (and changing configuration files during program invocation) is overkill, or a hassle.
- During development, it’s nice to be able to temporarily make a database read-only, or read-only from a particular session.
- I am very lazy.
In SQLAlchemy, there is a simple solution : monkeypatch the session.flush method.
from sqlalchemy import create_engine
from sqlalchemy.orm import sessionmaker
## Based on code by Yannick Gingras
def abort_ro(*args,**kwargs):
''' the terrible consequences for trying
to flush to the db '''
print "No writing allowed, tsk! We're telling mom!"
return
def db_setup(connstring='sqlite:///:memory:',
echo=False, readonly=True):
engine = create_engine(connstring, echo=echo)
Session = sessionmaker(bind=engine, autoflush=False, autocommit=False)
session = Session()
if readonly:
session.flush = abort_ro # now it won't flush!
return session, engine
Session objects are still writable within the session, and this functionality can now be enforced at the session level.
Baby Steps into HBase
July 15, 2009
Today, after reading (the amazing and invaluable!) Understanding HBase and BigTable, while researching schemas for Google App Engine, I took my first tentative steps into using HBase. About HBase:
HBase is the Hadoop database. Its (sic) an open-source, distributed, column-oriented store modeled after the Google paper, Bigtable: A Distributed Storage System for Structured Data by Chang et al. Just as Bigtable leverages the distributed data storage provided by the Google File System, HBase provides Bigtable-like capabilities on top of Hadoop.
HBase’s goal is the hosting of very large tables — billions of rows X millions of columns — atop clusters of commodity hardware. Try it if your plans for a data store run to big.
Well, my plans don’t run to big, but they do run to indexed over time. Since every cell in an HBase table has a timestamp, it makes it really easy to snapshot data over time, and “rollback” a query as though it was asked at any point in the past. For data that changes rarely over time, but for which one wants a historical record, this might make querying with history much simpler.
Historical Data Example
Think about how an organization changes over time. Employees enter and leave, business units might be bought and sold. One approach to modeling this is to take a snapshot every day, and store that in a RDBMS. The snapshots will have lot of redundant information, since an org doesn’t really change very much.
A simpler model is to simply enter a new snapshot of the organization when only when it changes, essentially overwriting the previous configuration. Since HBase automatically labels cells with timestamp, this comes for free.
Setting it up
Using Ole-Martin Mørk’s instructions was a breeze! Even though I know almost nothing about Java and the Java environment, I managed it. I followed them, with these modifications:
- After downloading, unzipping, and symbolic linking to ~hbase, I version control the whole thing ( $ git init; git-add * ; git ci -m “initial checkin, as unpacked from source”) , so that if I foul up anything, I can easily revert!
- Edit ~hbase/conf/hbase-env.sh to have the right “JAVA_HOME” which for me (Debian) is -> export JAVA_HOME=/usr/lib/jvm/java-6-openjdk
Since I don’t have passwordless ssh set up to local host, I get this error:
~/hbase$ ~/hbase/bin/start-hbase.sh
localhost: ssh: connect to host localhost port 22: Connection refused
The rest of the example seems to run fine though, and I’m in no mood to really track this down, since I’m still in the experiment phase.
Future Steps
I’m not sure whether I’m be going any deeper anytime soon, since I have a lot of SqlAlchemy code built around handling these sorts of ‘historical’ queries (where inserting and updating are the real difficulties!), but I do like the idea of easily versioned, map-like data stores quite well.
TCPView saves the day
June 16, 2009
I was having some trouble with OpenVPN (windows) this morning, a confusing error:
TCP/UDP: Socket bind failed on local address [undef]:1194:
Address already in use (WSAEADDRINUSE)
Seems obvious right? I killed OpenVPN, and looked around for other processes, but none were evident. A friend suggested using TCPVIew, which like everything Mark Russinovich writes, is easy to install, super useful, and totally solved the problem almost instantly.
The culprit — PIDGIN, of all things! For some reason, it had port 1194 all to itself! Killing it, restarting OpenVPN worked like a breeze!
Installing a Reluctant Network Card on Debian
May 8, 2009
I was having some trouble installing a network card on my home server. It wasn’t being autodetected. I’m weak on Linux hardware stuff, and networking in particular (since it’s always *just worked*), so this was starting from scratch. I had a few extra handicaps, in that I didn’t have the orginal box, and this card was one I’d bought months ago, physically installed, and forgetten to configure, so my bad! I didn’t even know the model number!
read on to see how I got it working