<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/">
  <channel>
    <title>#orm posts — Ben Crowder</title>
    <link>https://bencrowder.net/blog/tag/orm/</link>
    <atom:link href="https://bencrowder.net/blog/tag/orm/feed/" rel="self" />
    <description>Feed for blog posts tagged with #orm.</description>
    <lastBuildDate>Sat, 04 Apr 2026 05:22:16 GMT</lastBuildDate>
    <language>en-US</language>
    <generator>https://bencrowder.net/</generator>

    <item>
      <title>Lifter is “a lightweight query engine for Python iterables.” Looks nice. One of their examples: # va...</title>
      <link>https://bencrowder.net/blog/2016/459/</link>
      <guid isPermaLink="true">https://bencrowder.net/blog/2016/459/</guid>
      <pubDate>Fri, 04 Mar 2016 12:00:00 GMT</pubDate>
      <dc:creator><![CDATA[Ben Crowder]]></dc:creator>
      <description><![CDATA[<p><a href="https://github.com/EliotBerriot/lifter">Lifter</a> is “a lightweight query engine for Python iterables.” Looks nice. One of their examples:</p>
<pre><code># vanilla Python
results = [
    user for user in users
    if user['age'] == 26 and user['is_active']
]

# lifter
results = manager.filter(User.age == 26, User.is_active == True)
</code></pre><hr class="feed-extra" style="margin-top: 48pt;" /><p class="feed-extra feed-mail"><a href="mailto:ben.crowder@gmail.com?subject=Re%3A%20Lifter is “a lightweight query engine for Python iterables.” Looks nice. One of their examples: # va...">Reply via email</a></p>]]></description>
    </item>
    
  </channel>
</rss>
