Skip to main content

Query your objects for two cents!

Project description

Query your objects for two cents with Django like Q objects.

Some Examples

Q objects help you identify an object if its any attribute conforms your custom predicate dsl. Let’s take a look at the example below:

from liquer import Q


class MyClass:
    def __init__(self, foo):
        self.foo = foo

# Define a query.
# We expect foo attribute of an object to be 'bar'
# regardless of case sensivity
q = Q(foo__iexact='bar')

# Create one MyClass instance
my_obj = MyClass(foo='Bar')

# Test my_obj if it conforms our query object
assert q(my_obj)  # Evaluates to True

# We are also free to test any dictionary object
my_dict = {'foo': 'Bar'}
assert q(my_dict)

# Let's fail a test
my_fail_obj = MyClass(foo='Baz')
assert q(my_fail_obj)  # Evaluates to False, Throws assertion error

You can tail more attributes using ‘__’ underscores to digg objects:

>>> from liquer import Q
>>> my_dict = {'foo': {'bar': {'baz': 1}}}
>>> q = Q(foo__bar__baz__lte=2)

>>> q(my_dict)
True

Also there is chance for applying and/or logics to query couples:

>>> q = Q(foo__bar__gt=0) & Q(foo__bar__lt=9)  # The same as Q(foo__bar__gt=0, foo__bar__lt=9)
>>> q({'foo': {'bar': 5}})
True
>>> q({'foo': {'bar': 18}})
False

Let’s try or logic:

>>> q = Q(foo__bar=3) | Q(foo__bar=5)
>>> q({'foo': {'bar': 3}})
True
>>> q({'foo': {'bar': 5}})
True
>>> q({'foo': {'bar': 4}})
False

It’s very useful in most cases to register a callback when querying objects:

>>> q = Q(foo__bar=3) | Q(foo__bar=5)
>>> q.callback({'foo': {'bar': 3}}, lambda x: 'bar found %s' % x['foo']['bar'])
'bar found 3'

The funniest part is to register your own predicates:

>>> from liquer import Q, register
>>> register('is_sqrt', lambda x, y: x / y == y)
>>> q = Q(foo__is_sqrt=5)
>>> q({'foo': 25})
True

More is coming soon…

Enjoy!

Licence

Copyright (c) 2012 Kadir Pekel.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ‘Software’), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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

liquer-0.0.4.tar.gz (3.7 kB view details)

Uploaded Source

File details

Details for the file liquer-0.0.4.tar.gz.

File metadata

  • Download URL: liquer-0.0.4.tar.gz
  • Upload date:
  • Size: 3.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for liquer-0.0.4.tar.gz
Algorithm Hash digest
SHA256 a1c9b1a0ac1b1e3468a69c4b06538e214ca2ed01e5aaae35303c62e0e57812dd
MD5 6004a64b950b12330aae418ddeb79423
BLAKE2b-256 464acf4d9d6e7ed65c46335e3fce37b5e7645df3779635c508459f5e493f12c5

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page