Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.freenet.ag!news2.euro.net!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'python.': 0.02; 'url:pypi': 0.03; 'subject:Python': 0.06; 'column': 0.07; 'fixes': 0.07; 'json': 0.07; 'subject:ANN': 0.07; 'attributes': 0.09; "django's": 0.09; 'fix.': 0.09; 'report,': 0.09; 'skip:# 30': 0.09; 'url:github': 0.09; 'bug': 0.12; 'changes': 0.15; 'boolean': 0.16; 'columns': 0.16; 'manifest': 0.16; 'orm,': 0.16; 'sqlalchemy': 0.16; 'subject:mapper': 0.16; 'subject:object': 0.16; 'to:addr:python-announce-list': 0.16; '(you': 0.16; 'hey': 0.18; 'everyone,': 0.19; 'documented': 0.24; 'skip:i 40': 0.24; 'specify': 0.24; 'initial': 0.24; 'source': 0.25; 'updating': 0.26; 'to:2**1': 0.27; 'fixed': 0.29; 'skip:- 40': 0.29; 'feature': 0.29; 'to:no real name:2**1': 0.29; 'message- id:@mail.gmail.com': 0.30; 'file': 0.32; 'interface': 0.32; 'skip:- 30': 0.32; 'url:python': 0.33; 'at:': 0.34; 'received:google.com': 0.35; 'indexed': 0.36; 'replies': 0.36; 'thanks': 0.36; 'similar': 0.36; 'url:org': 0.36; 'list': 0.37; 'skip:& 10': 0.38; 'thank': 0.38; 'to:addr:python-list': 0.38; 'recent': 0.39; 'does': 0.39; 'to:addr:python.org': 0.39; 'analysis,': 0.60; 'numbers': 0.61; 'range': 0.61; 'date,': 0.68; 'sports': 0.69; 'resulted': 0.84; 'pass-through': 0.91 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=3ixh/PQq5HrwZuRP/X91oJNwPKHArNmitaDmkShhnp4=; b=YnHus0vW+cteF7CN72FKx8jqlPabLMslR/qK9FP149jhOZtjCyosyoZ7MCPxPYmuGh pM7yyoQSWUhXAW9j8gMCuLU1U721KxB58VlqFgf6NRzc24Jh+iVm62tWcppPv11z/xLM 3la813NmQRQICYMFTqdYhDyYyVybRiCmg/+sMijC9YGp8ljxg+kn1qdVjHZzYUu8AioW znQLmIEbR9UBA1EjvR27T/h6yFUzvHFGcjx/metzQjehT4YJL/K92lRR76UTqd0nzL0n OF9pYQQ81FvRHky/u+9rOgxy0aXp7mcvaVpeT54wqzKXNIxRW7M1nRx68gV6DXPGdr+Y lhmg== MIME-Version: 1.0 X-Received: by 10.52.248.166 with SMTP id yn6mr4373331vdc.41.1374213486153; Thu, 18 Jul 2013 22:58:06 -0700 (PDT) Date: Thu, 18 Jul 2013 22:58:05 -0700 Subject: ANN: rom 0.16 - Redis object mapper for Python From: Josiah Carlson To: Python-announce-list@python.org, python-list@python.org Content-Type: multipart/alternative; boundary=089e0160a434b016f004e1d7022c X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 107 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1374213495 news.xs4all.nl 15999 [2001:888:2000:d::a6]:59377 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:50889 --089e0160a434b016f004e1d7022c Content-Type: text/plain; charset=ISO-8859-1 Hey everyone, As time progresses, so does my Redis object mapper. The "rom" package is a Redis object mapper for Python. It sports an interface similar to Django's ORM, SQLAlchemy + Elixir, or Appengine's datastore. The changelog for recent releases can be seen below my signature. You can find the package at: https://www.github.com/josiahcarlson/rom https://pypi.python.org/pypi/rom Please CC me on any replies if you have any questions or comments. Thank you, - Josiah #----------------------------------- 0.16 ------------------------------------ [added] Thanks to a feature request from https://github.com/jrsmith , Boolean column support is now available. [added] DateTime, Date, and Time column types because I was already adding Boolean columns. #----------------------------------- 0.15 ------------------------------------ [fixed] Thanks to https://github.com/MickeyKim who fixed Json columns so that they round-trip after multiple saves. #----------------------------------- 0.14 ------------------------------------ [fixed] Thanks to https://github.com/mayfield the manifest is fixed for the source installation. #----------------------------------- 0.13 ------------------------------------ [fixed] updating a model will no longer unindex the model on attributes that weren't updated. Thanks to https://github.com/mayfield for the bug report, analysis, and initial pull request that ultimately resulted in the fix. [fixed] pip requires, versioning, etc., thanks to fixes from https://github.com/mayfield [changed] Model.get_by() will now work on any type of indexed columns. Unique columns work as before, and other columns get pass-through to the Model.query interface. [changed] Model.get_by() and Model.query.filter() will both accept single numbers as the value to match on (you don't need to specify a range if you are querying by equality). [changed] all changes will be documented in this changelog.txt file to keep a list of everything that is going on with the project. --089e0160a434b016f004e1d7022c Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
Hey everyone,

As time progresses, so does my Redis = object mapper.

The "rom" package is a Redis object mapper = for Python. It sports an interface similar to Django's ORM, SQLAlchemy = + Elixir, or Appengine's datastore.

The changelog for recent releases can be seen below my signature.
You can find the package at:
https://www.github.com/josiahcarlson/rom
https://pypi.python.org/pypi/rom

Please CC me on any replies if you have any questions or comments.
<= br>Thank you,
=A0- Josiah

#-----------------= ------------------ 0.16 ------------------------------------
[add= ed] Thanks to a feature request from https://github.com/jrsmith , Boolean
=A0 =A0 column support is now available.
[added] DateTime, D= ate, and Time column types because I was already adding
=A0 =A0 B= oolean columns.
#----------------------------------- 0.15 -------= -----------------------------
[fixed] Thanks to https://git= hub.com/MickeyKim who fixed Json columns so that
=A0 =A0 they= round-trip after multiple saves.
#------------------------------= ----- 0.14 ------------------------------------
[fixed] Thanks to https://gith= ub.com/mayfield the manifest is fixed for the
=A0 =A0 source = installation.
#----------------------------------- 0.13 ---------= ---------------------------
[fixed] updating a model will no longer unindex the model on attribute= s that
=A0 =A0 weren't updated. Thanks to https://github.com/mayfield for the bug report,
=A0 =A0 analysis, and initial pull request that ultimately resulted in= the fix.
[fixed] pip requires, versioning, etc., thanks to fixes= from
[changed] Model.get_by() will now work on any type of indexed columns.= Unique
=A0 =A0 columns work as before, and other columns get pas= s-through to the
=A0 =A0 Model.query interface.
[change= d] Model.get_by() and Model.query.filter() will both accept single
=A0 =A0 numbers as the value to match on (you don't need to specif= y a range if you
=A0 =A0 are querying by equality).
[ch= anged] all changes will be documented in this changelog.txt file to keep a<= /div>
=A0 =A0 list of everything that is going on with the project.

--089e0160a434b016f004e1d7022c--