<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
     xmlns:atom="http://www.w3.org/2005/Atom"
     xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:wfw="http://wellformedweb.org/CommentAPI/"
     >
  <channel>
    <title>Piece Of Py(thon)</title>
    <link>http://pieceofpy.com</link>
    <description>A static blog engine/compiler</description>
    <pubDate>Fri, 13 Jan 2012 15:29:42 GMT</pubDate>
    <generator>Blogofile</generator>
    <sy:updatePeriod>hourly</sy:updatePeriod>
    <sy:updateFrequency>1</sy:updateFrequency>
    <item>
      <title>Working with Pyramid and Ming</title>
      <link>http://pieceofpy.com/2012/01/10/working-with-pyramid-and-ming</link>
      <pubDate>Tue, 10 Jan 2012 09:00:00 EST</pubDate>
      <category><![CDATA[python]]></category>
      <category><![CDATA[ming]]></category>
      <guid>http://pieceofpy.com/2012/01/10/working-with-pyramid-and-ming</guid>
      <description>Working with Pyramid and Ming</description>
      <content:encoded><![CDATA[<p id="p1">As I've been working on <a href="http://sf.net/p/stockpot">Community Cookbook</a> I have encountered some situations
using Ming that I am sure many other people have as well. Using Ming as my ODM and I have been
very happy with how it is going so I wanted to share with everyone the steps I have taken to integrate Ming into Pyramid. My goal was to make it feel just like you would except a data storage integration to feel. Simple, clean, and easy.</p>
<p id="p2">As part of creating this integration, I created my own scaffold to hook everything up. You can download and try the scaffold yourself from my <a href="https://sourceforge.net/u/algorithms/wwitzel3-scaffolds">SourceForge repository</a>. Below I will outline some of the key areas I had to configure. I highly reccomend you install and create a sample project with the scaffold when you follow along with this blog post.</p>
<p id="p3">First in the main <strong>init</strong>.py of the project, I had to setup some configuration. If you have created a new project using the scaffold this will be done for you. Here are the important snippets from root <strong>init</strong>.py</p>
<pre class="brush: py">
# stockpot/__init__.py

from pyramid.events import NewRequest
import stockpot.models as M

def main(global_config, **settings):
    # ...
    config.begin()
    config.scan('stockpot.models')
    M.init_mongo(engine=(settings.get('mongo.url'), settings.get('mongo.database')))
    config.add_subscriber(close_mongo_db, NewRequest)
    # ...

def close_mongo_db(event):
    def close(request):
         M.DBSession.close_all()
    event.request.add_finished_callback(close)
</pre>

<p id="p4">Now lets take a look at what you are getting from the models import (M). We use init mongo which does exactly what you think and then we use DBSession which I used as a name since it is familar to those who are coming from SQLalchemy. I will just show you the entire file.</p>
<pre class="brush: py">
# stockpot/models/__init__.py

from ming import Session
from ming.datastore import DataStore
from ming.orm import ThreadLocalORMSession
from ming.orm import Mapper

session = Session
DBSession = ThreadLocalORMSession(session)

def init_mongo(engine):
    server, database = engine
    datastore = DataStore(server, database=database)
    session.bind = datastore
    Mapper.compile_all()

# Here we just ensure indexes on all our mappers at startup.
    for mapper in Mapper.all_mappers():
        session.ensure_indexes(mapper.collection)

# Flush changes and close all connections
    DBSession.flush()
    DBSession.close_all()

from .user import User
</pre>

<p id="p5">Now I want to show you how I did the groupfinder and RequestWithAttribute. Since I imagine most of you looking to use Ming will probably have some type of user model. For the groupfinder and RequestWithAttributes the only special thing I had to do was add an extra step to convert the users id in to a proper bson.ObjectId</p>
<pre class="brush: py">
from pyramid.decorator import reify
from pyramid.request import Request
from pyramid.security import unauthenticated_userid

import bson
import stockpot.models as M

def groupfinder(userid, request):
    userid = bson.ObjectId(userid)
    user = M.User.query.get(_id=userid)
    return [] if user else None

class RequestWithAttributes(Request):
    @reify
    def user(self):
        userid = unauthenticated_userid(self)
    userid = bson.ObjectId(userid)
    if userid:
        return M.User.query.get(_id=userid)
    return None
</pre>

<p id="p6">Finally here is what my mapped User model might look like. This is a sample taken from a real project with some sensitive elements replaced and/or removed. Use it as an example, but not as a good one.</p>
<pre class="brush: py">
# stockpot/models/user.py

from hashlib import sha1
from datetime import datetime
from string import ascii_letters, digits
from random import choice

from ming import schema as S
from ming.orm import FieldProperty
from ming.orm.declarative import MappedClass

from pyramid.httpexceptions import HTTPForbidden

from stockpot.models import DBSession

# If you change this AFTER a user signed up they will not be able to
# login until they perform a password reset.
SALT = 'supersecretsalt'
CHARS = ascii_letters + digits
MAX_TRIES = 100

class User(MappedClass):
    class __mongometa__:
        session = DBSession
        name = 'users'
        custom_indexes = [
                dict(fields=('email',), unique=True, sparse=False),
                dict(fields=('username',), unique=True, sparse=False),
                dict(fields=('identifier',), unique=True, sparse=False),
        ]

# This should feel familar to anyone coming from SQLa
    _id = FieldProperty(S.ObjectId)
    username = FieldProperty(str)
    email = FieldProperty(str)
    password = FieldProperty(str, if_missing=S.Missing)
    signup_date = FieldProperty(datetime, if_missing=datetime.utcnow())

# Simple init method
    def __init__(self, *args, **kwargs):
        self.signup_date = datetime.utcnow().replace(microsecond=0)
        self.username = kwargs.get('username')
        if kwargs.get('password'):
            self.password = User.generate_password(kwargs.get('password'),
                    str(self.signup_date))
        self.email = kwargs.get('email', '{0}@example.com'.format(self.username))

# Update method is a little different than you are used to
    # ensure by the time you're calling this everything is validated and safe
    def update(self, *args, **kwargs):
        for k,v in kwargs.items():
            if k == 'password':
                v = User.generate_password(v, str(self.signup_date))
            setattr(self, k, v)

# Standard authenticate method
    @classmethod
    def authenticate(cls, login, password):
        user = cls.query.find({'$or': [{'username':login}, {'email':login}]}).one()
        if user:
            password = User.generate_password(password, str(user.signup_date))
            if password == user.password:
                return user
        else:
            return None

# Password hashing
    @staticmethod
    def generate_password(password, salt):
        password = sha1(password).hexdigest() + salt
        return sha1(password+SALT).hexdigest()

# Username generation, the username generation is very useful if you use social auth
    @staticmethod
    def random_username(_range=5, prefix=''):
        return prefix + ''.join([choice(CHARS) for i in range(_range)])

</pre>

<p id="p7">And there you have it, if you tie all the elements together you get a pretty easy and straightforward Ming integration with Pyramid.</p>]]></content:encoded>
    </item>
    <item>
      <title>SQLalchemy Cleanup Challenge</title>
      <link>http://pieceofpy.com/2011/10/13/sqlalchemy-cleanup-challenge</link>
      <pubDate>Thu, 13 Oct 2011 14:40:00 EDT</pubDate>
      <category><![CDATA[python]]></category>
      <category><![CDATA[sqlalchemy]]></category>
      <guid>http://pieceofpy.com/2011/10/13/sqlalchemy-cleanup-challenge</guid>
      <description>SQLalchemy Cleanup Challenge</description>
      <content:encoded><![CDATA[<p id="p1">Yesterday I found myself writing some very interesting SQLalchemy. The problem is I have a date column in
PostgreSQL that is stored as epoch time, so it is just an Interger column. I need to group by year,month and
grab the total count of status='A' groups for that year,month combination.</p>
<p id="p2">Here is what I came up with, can you make it cleaner? Faster? I am curious to see the different variations
people come up with.</p>
<pre class="brush: py">
        pg_date_part_month = sa.func.date_part('month',
                sa.func.to_timestamp(Group.register_time))
        pg_date_part_year = sa.func.date_part('year',
                sa.func.to_timestamp(Group.register_time))

group_month_select = ( 
            db.query(
                sa.sql.label('year', pg_date_part_year),
                sa.sql.label('month', pg_date_part_month),
                sa.sql.label('total', sa.func.count(Group.status))
            )   
            .filter_by(status='A')
            .group_by(pg_date_part_year)
            .group_by(pg_date_part_month)
            .group_by(Group.status)
            .order_by(pg_date_part_year)
            .order_by(pg_date_part_month)
        )
</pre>]]></content:encoded>
    </item>
    <item>
      <title>Using SQLAlchemy Custom Types to Convert Integers to DateTime</title>
      <link>http://pieceofpy.com/2011/10/12/sqlalchemy-custom-types-integers-datetime</link>
      <pubDate>Wed, 12 Oct 2011 20:25:00 EDT</pubDate>
      <category><![CDATA[python]]></category>
      <category><![CDATA[sqlalchemy]]></category>
      <guid>http://pieceofpy.com/2011/10/12/sqlalchemy-custom-types-integers-datetime</guid>
      <description>Using SQLAlchemy Custom Types to Convert Integers to DateTime</description>
      <content:encoded><![CDATA[<p id="p1">Today I was working on fetching out some data from an existing PostgreSQL server and generating
some BSON output that would later be imported in to MongoDB. One of the problems I ran in to was
that I needed to format the timestamps easily for each row of data.</p>
<p id="p2">Searching the internet I ran across <a href="http://threebean.wordpress.com/2011/09/01/automatically-converting-integer-timestamps-to-python-datetime-in-reflected-sqlalchemy-models/">this blog post by Ralph Bean</a>, which does just that, but at a level
that was well beyond what I needed. So taking away some inspiration from Ralph's blog post, I decided
to just go with a <a href="http://www.sqlalchemy.org/docs/core/types.html#custom-types">Custom Type</a>.</p>
<pre class="brush: py">
from time import mktime
from datetime import datetime

class IntegerDateTime(types.TypeDecorator):
    """Used for working with epoch timestamps.

Converts datetimes into epoch on the way in.
    Converts epoch timestamps to datetimes on the way out.
    """
    impl = types.INTEGER
    def process_bind_param(self, value, dialect):
        return mktime(value.timetuple())
    def process_result_value(self, value, dialect):
        return datetime.fromtimestamp(value)
</pre>

<p id="p3">Then in my reflected table, I just override the column that holds the integer representation of the
datetime I want.</p>
<pre class="brush: py">
group_table = sa.Table('groups', metadata,
    sa.Column('register_time', IntegerDateTime),
    autoload=True,
    include_columns=[
        'group_id',
    'register_time',
    'type'
    ],
)
</pre>

<p id="p4">Now when we query and begin to use our results, register_time will be a DateTime object making it
very easy to do any timedelta arithmetic or string formatting.</p>]]></content:encoded>
    </item>
    <item>
      <title>Working for Geeknet</title>
      <link>http://pieceofpy.com/blog/2011/10/05/working-for-geeknet</link>
      <pubDate>Wed, 05 Oct 2011 11:00:00 EDT</pubDate>
      <category><![CDATA[python]]></category>
      <guid isPermaLink="true">http://pieceofpy.com/blog/2011/10/05/working-for-geeknet</guid>
      <description>Working for Geeknet</description>
      <content:encoded><![CDATA[<p id="p1">I joined <a href="http://geek.net">Geeknet</a> full time this week as a Senior Software Engineer on the <a href="http://sf.net">SourceForge</a> team. I am really looking forward to the challenge ahead and working with everyone on the team. As part of the SourceForge team I will be helping to make SourceForge better for the current users and working on improvements that will attract new projects to SourceForge. My personal goal is to make SourceForge part of the day to day vocabulary like it used to be. I want see SourceForge back in the top three when people ask "Where is a good place to host my code?" or "If you were creating an OSS project, where would you put?". I believe that this team can do that and I am really excited for the future.</p>
<p id="p2">I will be candid here, when I first thought of working for Geeknet on the SourceForge team, I was thinking probably the same thing you are ... isn't that only CVS and SVN? That is just for hosting downloads right?</p>
<p id="p3">So as part of my initial curiosity of what people currently think of SourceForge versus what is actually happening on the site I did some googling and read up on anything that mentioned SourceForge that was less than 6-months old. I found that it wasn't so much that SourceForge wasn't keeping pace with the other options out there, but that it wasn't marketing the fact that it was keeping pace with the other options out there.</p>
<p id="p4">Here are a list of improvements that I didn't know about until I did some research.</p>
<ul>
<li>SourceForge supports Git and Mercurial (and Bazzar).</li>
<li>You can fork and submit merge requests with Git and Mercurial.</li>
<li>You don't have to get approval for projects.</li>
<li>There is a user project space for creating miscellaneous repositories.</li>
<li>Integrated Tracker / Commit messages. [#TICKET]</li>
<li>9 out of 10 Ninjas recommend it.</li>
</ul>
<p id="p5">When you combine that with one of the best mirror networks out there, live IRC support, and a great community; You get a pretty nice resource. And at a price of FREE.99 (like beer), it was all I needed to know that this was where I wanted to work. Contributing to an long-time open source project that paved the path for other project hosting sites while helping to keep that open spirit alive and well.</p>]]></content:encoded>
    </item>
    <item>
      <title>Scheduling Posts with Blogofile</title>
      <link>http://pieceofpy.com/blog/2011/08/28/scheduling-posts-with-blogofile</link>
      <pubDate>Sun, 28 Aug 2011 18:30:00 EDT</pubDate>
      <category><![CDATA[python]]></category>
      <guid isPermaLink="true">http://pieceofpy.com/blog/2011/08/28/scheduling-posts-with-blogofile</guid>
      <description>Scheduling Posts with Blogofile</description>
      <content:encoded><![CDATA[<p id="p1">
    I wanted to be able to schedule posts with blogofile and this was the quickest way I could think of to do it. If someone knows of a better way, than please comment cause I would love to read about.
</p>

<p id="p2">
    My change is pretty simple, if the date in the YAML header is &gt; than now, throw a PostProcessing exception and continue on with the next post. I added a cronjob that runs blogofile build every hour, so this solution sucks for blogs that take a long time to build or if you want precision scheduling, but my site builds fast and I am ok with an hour delay.

<br/>

<pre class="brush: diff">
diff -r e370cb5a903f blog/_controllers/blog/post.py
--- a/blog/_controllers/blog/post.py    Tue Aug 23 23:16:37 2011 -0400
+++ b/blog/_controllers/blog/post.py    Sun Aug 28 19:03:28 2011 -0400
@@ -70,7 +70,14 @@
     def __str__(self):
         return repr(self.value)

+class PostProcessException(Exception):

+    def __init__(self, value):
+        self.value = value
+
+    def __str__(self):
+        return repr(self.value)
+                
 class Post(object):
     """
     Class to describe a blog post and associated metadata
@@ -179,7 +186,11 @@
             self.slug = slug

if not self.date:
-            self.date = datetime.datetime.now(pytz.timezone(self.__timezone))
+            self.date       = datetime.datetime.now(pytz.timezone(self.__timezone))
+        else:
+            if self.date &gt; datetime.datetime.now(pytz.timezone(self.__timezone)):
+                raise PostProcessException('Post date is in the future.')
+
         if not self.updated:
             self.updated = self.date

@@ -367,7 +378,7 @@
             raise
         try:
             p = Post(src, filename=post_fn)
-        except PostParseException as e:
+        except (PostParseException,PostProcessException) as e:
             logger.warning(u"{0} : Skipping this post.".format(e.value))
             continue
         #Exclude some posts
</pre>
</p>]]></content:encoded>
    </item>
    <item>
      <title>Hooking up Whoosh and SQLalchemy (sawhoosh)</title>
      <link>http://pieceofpy.com/blog/2011/08/05/hooking-up-whoosh-and-sqlalchemy-(sawhoosh)</link>
      <pubDate>Fri, 05 Aug 2011 12:00:00 EDT</pubDate>
      <category><![CDATA[python]]></category>
      <guid isPermaLink="true">http://pieceofpy.com/blog/2011/08/05/hooking-up-whoosh-and-sqlalchemy-(sawhoosh)</guid>
      <description>Hooking up Whoosh and SQLalchemy (sawhoosh)</description>
      <content:encoded><![CDATA[<p id="p1">I was talking to Tim VanSteenburgh (we both do work for Geek.net) and he had a proof of concept for automatically updating a search index when a change happens to a model and pairing a unified search results page with that to make an easy one-stop search solution for a website. I thought this was a pretty cool idea, so I decided to do a implementation of it on top of the Pyramid framework and share it the readers of my blog. I choose Whoosh only so that I could have an easy way for users to try the project out. Since whoosh is pure python it installs when you run your setup.py develop. But this approach could be applied to any searching system. Tim was using solr.</p>
<h2>Demo Project</h2>
<p id="p2">The purpose of the post is to summarize briefly the steps taken to achieve the desired results of automatically updating the index information when models change. Please browse the source and clone and run the project, looking at the source as a whole will definitely give you a better start to finish understanding than just reading this blog post.</p>
<p id="p3">GitHub: <a href="https://github.com/wwitzel3/sawhoosh">sawhoosh</a></p>
<h2>Whooshing Your Models</h2>
<p id="p4">There are few parts that make up the magic of all this, but each part is really simple. First you have the index schema itself. This is setup to hold the unique ID of an item, as well as a pickled version of the uninstantiated class, and an aggregate of values (decided by you) that you want to be searchable for the item. The schema looks like this:</p>
<pre class="brush: py">
class SawhooshSchema(SchemaClass):
    value = TEXT
    id = ID(stored=True, unique=True)
    cls = ID(stored=True)
</pre>

<p id="p5">In the Whoosh world this basically says store ID and CLS so it comes back with the search results, but not value. value will be what we will search over in order to find our results. We need to tell our models what attributes are important to use for indexing, I've chosen to do this with a whoosh_value property on the model itself.</p>
<pre class="brush: py">
class Document(Base):
    __tablename__ = 'document'
    __whoosh_value__ = 'id,title,content,author_id'
    id = Column(CHAR(32), primary_key=True, default=new_uuid)
    title = Column(String, nullable=False)
    content = Column(Text, nullable=False)
    author_id = Column(Integer, ForeignKey('author.id'), index=True)
    def __str__(self):
        return u'Document - Title: {0}'.format(self.title)
</pre>

<p id="p6">This says make the id, title, content, and author_id for document all searchable values. This happens automatically for us because our Base class has a parent class that handles all of the Whoosh work. This parent class, I've called it SawhooshBase, handles all the indexing, reindexing, and deindexing of our models. The class itself looks like this:</p>
<pre class="brush: py">
class SawhooshBase(object):
    # The fields of the class you want to index (make searchable)
    __whoosh_value__ = 'attribue,attribute,...'
    def index(self, writer):
        id = u'{0}'.format(self.id)
        cls = u'{0}'.format(pickle.dumps(self.__class__))
        value = u' '.join([getattr(self, attr) for attr in self.__whoosh_value__.split(',')])
        writer.add_document(id=id, cls=cls, value=value)
    def reindex(self, writer):
        id = u'{0}'.format(self.id)
        writer.delete_by_term('id', self.id)
        self.index(writer)
    def deindex(self, writer):
        id = u'{0}'.format(self.id)
        writer.delete_by_term('id', self.id)

Base = declarative_base(cls=SawhooshBase)
</pre>

<p id="p7">As you can see in the index method, we use the whoosh_value to create an aggregate of searchable strings and supply that to the value we defined in our search schema. We pickle the class and also store the ID. This is what later lets us easily take search results and turn them in to object instances.</p>
<p id="p8">Those methods above are only ever run by our SQLalchemy after_flush session event, though that is not to say you couldn't run them manually. The callback and event hook looks like this:</p>
<pre class="brush: py">
def update_indexes(session, flush_context):
    writer = WIX.writer()
    for i in session.new:
        i.index(writer)
    for i in session.dirty:
        i.reindex(writer)
    for i in session.deleted:
        i.deindex(writer)        
    writer.commit()
event.listen(DBSession, 'after_flush', update_indexes)
</pre>

<p id="p9">The WIX object you see being used here is created much the same way you create your DBSession and you can view that in the <a href="https://github.com/wwitzel3/sawhoosh/blob/master/sawhoosh/search.py">search.py</a> file of the project. Everything else is pretty straight forward. Call the respective indexer methods for new, dirty, and deleted items in the session.</p>
<h2>Using in the View</h2>
<p id="p10">Now we have our models all <strong><em>whooshified</em></strong> (technical term) and we want to have our users searching and displaying usable results. To start we have a simple search form that when submitted does a GET request to our search method with keywords. Now since the whoosh query parser is already smart enough to pickup things like AND and OR we don't have to do much.</p>
<p id="p11">The view code itself is where we use another helper method called results_to_instance (also in <a href="https://github.com/wwitzel3/sawhoosh/blob/master/sawhoosh/search.py">search.py</a>). This method takes our search results, unpickles the class, fetches the instance from the DB and places the result in to a list. That method looks like this:</p>
<pre class="brush: py">
def results_to_instances(request, results):
    instances = []
    for r in results:
        cls = pickle.loads('{0}'.format(r.get('cls')))
        id = r.get('id')
        instance = request.db.query(cls).get(id)
        instances.append(instance)
    return instances
</pre>

<p id="p12">Now this is where you see the benefit of pickling the class type with the search result. We have ready to use instances of multiple types from a single search result. We can pass them in to a template to render the results, but since we have a mix of instance types, we need a unified way to render them out without explicitly checking their type or using a series of if attribute checks. I decided I would use <strong>str</strong> on the model to be a search results safe friendly way to display the object to the user and that I would define a route_name helper method on the model so that I can use request.route_url(object.route_name()) to generate the clickable links in the results. The combination of this can be viewed below:</p>
<pre class="brush: html">
%if results:
<ul id="search_results">
% for r in results:
    <li><a href="${request.route_url(r.route_name(), id=r.id)}">${r}</a></li>
%endfor
</ul>
%else:
<p id="p13">No results found</p>
%endif
</pre>

<p id="p14">And the view itself uses some things we haven't talked about yet. QueryParser is just part of Whoosh and it is what turns your keywords in to something useful. request.ix is just a shortcut to our WIX object we created, we've added it using a custom Request class (same as we've done with db), you can see that in the <a href="https://github.com/wwitzel3/sawhoosh/blob/master/sawhoosh/security.py">security.py</a> file of the project. From there we render the search results html and return it to our AJAX caller to inject in to the page. You can see this is also where we use the results_to_instances method discussed earlier.</p>
<pre class="brush: py">
@view_config(route_name='search', renderer='json', xhr=True)
def search_ajax(request):
    query = request.params.get('keywords')
    parser = QueryParser('value', request.ix.schema)
    with request.ix.searcher() as searcher:
        query = parser.parse(query)
        results = searcher.search(query)
        search_results_html=render('sawhoosh:templates/search/results.mako',
                              dict(results=results_to_instances(request, results)),
                              request=request)
    return dict(search_results_html=search_results_html)
</pre>

<h2>Summary</h2>
<p id="p15">There you have it. A search indexer using SQLalchemy on top of Pyramid. I highly recommend you clone the git repo for this project or review the code using the Git website if you are interested in getting a start to finish feel. The project allows you to add Authors and Documents and Edit and Delete them all while updating the local search index stored in the a directory on the file system.</p>
<p id="p16">GitHub: <a href="https://github.com/wwitzel3/sawhoosh">sawhoosh</a></p>]]></content:encoded>
    </item>
    <item>
      <title>Pyramid and Traversal with a RESTful interface</title>
      <link>http://pieceofpy.com/blog/2011/08/01/pyramid-and-traversal-with-a-restful-interface</link>
      <pubDate>Mon, 01 Aug 2011 12:00:00 EDT</pubDate>
      <category><![CDATA[python]]></category>
      <guid isPermaLink="true">http://pieceofpy.com/blog/2011/08/01/pyramid-and-traversal-with-a-restful-interface</guid>
      <description>Pyramid and Traversal with a RESTful interface</description>
      <content:encoded><![CDATA[<h2>UPDATE (2011-08-05)</h2>
<p id="p1">Please use caution when reading this post. A lot of the approach and implementation here is flawed. I am keeping the post up for historical purposes, but I am currently working on a follow up post that has a much better and proper implementation of traversal for SQLalchemy models. The practice of not returning real instances as traversal expects and tightly coupling the models to the traversal method is something that is less than desirable and will lead to more pain than gain long term. That being said, some of the approaches here are a good way to learn about traversal and how one might want to use it with their data model.</p>
<h2>Original Post</h2>
<p id="p2">When Pyramid was first being developed I was intrigued by the idea that I could create context aware views and use a host of methods to check permissions on those contexts, generate URLs based off those contexts, and auto-magically call the view required based on the context and the requested resource path.</p>
<p id="p3">So one of my first experiments with Pyramid was to implement proper resource urls for contexts in a RESTful fashion. Eventually I plan to do this for the entire collection as well, but for now all I need is the context level RESTful interface. The goal of which is to have URLs that go something like this.</p>
<ul><li> /resource/id (GET) - default view of the resource </li>
    <li> /resource/id/edit (GET) - the form that allows you to edit the resource </li>
    <li> /resource/id/create (GET) - the form that allows you to edit the resource </li>
    <li> /resource/id (PUT) - updates </li>
    <li> /resource/id (POST) - create </li>
    <li> /resource/id (DELETE) - delete </li>
</ul><p id="p4">This ends up being pretty damn simple with Pyramid and Traversal and for those of you new to traversal or even those who aren't, I highly recommend reading the <a href="http://docs.pylonsproject.org/projects/pyramid/dev/narr/muchadoabouttraversal.html">Much Ado About Traversal</a> chapter in the Pyramid documentation. Also on a side note all of the snippets from this post are part of a real project called <a href="https://sourceforge.net/p/stockpot/code">Stockpot</a> and the code is freely available via SourceForge.</p>
<h2>My Root</h2>
<p id="p5">So first step for me was to design my Root object. This is the really the foundation for traversal and determines what resources it will be able to find and how to interact with them once it finds them. My Root object is simple and looks like this.</p>
<pre class="brush: py">
def _owned(obj, name, parent):
    obj.__name__ = name
    obj.__parent__ = parent
    return obj

class Root(dict):
    __name__ = None
    __parent__ = None
    #
    def __init__(self, request):
        dict.__init__(self)
        self.request = request
        self['user'] = _owned(User, 'user', self)
</pre>

<p id="p6">This is pretty straightforward. We create a user entry point for the first call to <strong>getitem</strong> and return the User model with a name of user and the Root object as the parent.</p>
<h2>My Model</h2>
<p id="p7">For my Root object to really do anything useful our model class needs to do some work so that when the traversal algorithm calls <strong>getitem</strong> on our User model it actually gets something useful back. I've done this using a base class for my declarative_base call.</p>
<pre class="brush: py">
class StockpotBase(object):
    @classmethod
    def __getitem__(cls, k):
        try:
            result =  DBSession().query(cls).filter_by(id=k).one()
            result.__parent__ = result
            result.__name__ = str(k)
            return result
        except NoResultFound, e:
            raise KeyError
    @classmethod
    def __len__(cls):
        return DBSession().query(cls).count()    
    @classmethod
    def __iter__(cls):
        return (x for x in DBSession().query(cls))

Base = declarative_base(cls=StockpotBase)

class User(Base):
    __tablename__ = 'users'
    __name__ = 'user'
    #
    def __init__(self, email, password=None, display_name=None):
        self.email = email
        self.password = password
        self.display_name = display_name
    #
    id = Column(Integer, primary_key=True)
    email = Column(String, nullable=False, unique=True)
    password = Column(String, nullable=True)
    display_name = Column(String, nullable=True)
    user_groups = relation(Group, backref='user', secondary=groups)
    groups = association_proxy('user_groups', 'name', creator=Group.group_creator)
    recipes = relation(Recipe, backref='user')
    #
    def __str__(self):
        return 'User(id={0}, email={1}, groups={2})'.format(self.id, self.email, self.groups)

def __repr__(self):
        return self.__str__()
</pre>

<p id="p8">So that is a pretty big chunk of code so let me go through what is happening, it is rather simple. I've created StockpotBase which has the methods our traversal algorithm is going to want. I've used that as the cls for my declarative_base call so that any class that I create that inherits from Base will have all of the proper methods needed.</p>
<p id="p9">The <strong>getitem</strong> itself ensures that the parent is set to the generic user class and the name of the class is set to the primary key. This is important later when we start using resource_url() to generate links for us in our templates, if you consider that the urls will be generated with the pattern of /<strong>parent</strong>.<strong>name</strong>/context.<strong>name</strong></p>
<h2>My Views</h2>
<p id="p10">With the Root object setup and our model "traversal enabled", we can look at how the views for this will be setup. I personally like to use the config.scan('stockpot.views') helper and use the @view_config decorator for my views. I find it cleaner and easier to to have the view_config right with the actually def.</p>
<pre class="brush: py">
# RESOURCE_URL = /user/id
@view_config(context=User, renderer='user/view.mako')
def get(request):
    return dict(user=request.context)

# RESOURCE_URL = /user/id/edit
@view_config(name='edit', context=User, renderer='user/edit.mako')
def edit(request):
    return dict(user=request.context)
</pre>

<p id="p11">So here is the default GET view. It allows anyone to use this view, but I will have a blog post about permissions with ACL and traversal later, and it uses the renderer of my user/view.mako template. Then we have the edit view which requires User:edit permissions and uses the edit.mako template. Pretty simple. Next we have the first of the JSON views (they don't have to be JSON).</p>
<pre class="brush: py">
@view_config(context=User, request_method='PUT', xhr=True, renderer='json')
def put(request):
    user = request.context
    return dict(method='PUT', user_id=user.id, email=user.email)
</pre>

<p id="p12">And the mako template jQuery for this might look something like this</p>
<p id="p13">$$code(lang=javascript, linenums=True)
$(document).ready(function() {
    $('#put').click(function() {
        $.ajax({
            url: '${request.resource_url(user)}',
            type: 'PUT',
            context: document.body,
            dataType: 'json',
            success: function(data) {
                console.log(data);
                alert('done');
            }
        });
    });
});
</p>
<p id="p14">And that is it. You would repeat the same view pattern for request_method POST and request_method DELETE and you would have RESTful API in to your resources/models in a very clean fashion.</p>
<h2>What Happens</h2>
<p id="p15">When a user visits the resource url a simple series of calls to <strong>getitem</strong> happens. The Root (/) object is called with 'user'. A User object with the name of 'user' and the parent of Root is returned. The User class has it's <strong>getitem</strong> called and uses the DBSession to lookup a user based on the key given. For example /user/1 (Root / User / k) would result in '1' being passed to the user objects <strong>getitem</strong> as the key. If it locates the user, it returns the instance and sets the name and parent. If you don't set the name when you call resource_url with the context, the generated URL would look read /user instead of /user/1.</p>
<p id="p16">There is nothing after the 1 so it looks for a generic unnamed view that handles the User context. In our case, our get method. When you add on edit, /user/1/edit it works in the same fashion, but when it tries to call <strong>getitem</strong> a second time on the User instance it will throw a key error which tells Pyramid that I am looking for a view named edit with the context of User. This traversal works the same way for the JSON calls as well.</p>
<h2>Feedback</h2>
<p id="p17">I don't like the fact that there are extra DB calls here, but it is a trade off. Even the /user/1/edit has to make two database calls to get the KeyError and review the proper view, but as a side-effect I can do something like /user/1/collection/1 and get the specific item of the collection owned by the user. That extends to edits as well ... /user/1/collection/1/edit. Overall I like how this pattern has evolved in my application, but would appreciate any feedback or suggested improvements to what I've done so far.</p>]]></content:encoded>
    </item>
    <item>
      <title>PyCodeConf 2011</title>
      <link>http://pieceofpy.com/blog/2011/07/28/pycodeconf-2011</link>
      <pubDate>Thu, 28 Jul 2011 01:00:00 EDT</pubDate>
      <category><![CDATA[python]]></category>
      <guid isPermaLink="true">http://pieceofpy.com/blog/2011/07/28/pycodeconf-2011</guid>
      <description>PyCodeConf 2011</description>
      <content:encoded><![CDATA[<p id="p1"/><center>
<a href="http://py.codeconf.com"><img src="http://pycodeconf.s3.amazonaws.com/pycodeconf-badge.png" alt="See You At PyCodeConf" height="93" width="144"/></a>
</center>
<p id="p2">I will see everyone at <a href="http://py.codeconf.com">PyCodeConf 2011 in Miami, FL</a> this year. I will be there from October 5th through the 9th. Look me up if you are going. I will be posting updates of the event on Twitter and Google+. Looking forward to seeing everyone there!
</p>]]></content:encoded>
    </item>
    <item>
      <title>Pyramid and velruse for Google authentication</title>
      <link>http://pieceofpy.com/blog/2011/07/24/pyramid-and-velruse-for-google-authentication</link>
      <pubDate>Sun, 24 Jul 2011 12:00:00 EDT</pubDate>
      <category><![CDATA[python]]></category>
      <guid isPermaLink="true">http://pieceofpy.com/blog/2011/07/24/pyramid-and-velruse-for-google-authentication</guid>
      <description>Pyramid and velruse for Google authentication</description>
      <content:encoded><![CDATA[<p id="p1">As I continue to work with Pyramid I find myself really enjoying the web development I am doing. Recently I needed to integrate Google OAuth (and eventually Facebook and Twitter) as part of the options for the user signup experience. I knew <a href="http://cd34.com/blog/">Chris Davies</a> has done something similar recently based on some Google+ activity I had read of his, so while I was exploring options, I also spoke with him about his experience with python-openid and velruse. The feedback and examples he gave to me are pretty much the basis for what you are about to read on how to get Google OAuth working with your Pyramid application.</p>
<p id="p2">This post only describes how to do the Google Authentication with Pyramid and velruse, but you can easily adapt the information in the post to work with Twitter and Facebook. All the code that these snippets were taken from are available in their entirety in the <a href="https://sourceforge.net/p/stockpot/code/">stockpot git repository</a> on Sourceforge.</p>
<h3>Setting it all up</h3>
<p id="p3">When I first looked at <a href="http://packages.python.org/velruse">velruse</a> I was a little intimidated. The documentation isn't the greatest in the world and the code is very compact (but well done), so it took a bit for me to become comfortable with it. After some code reading and submitting a <a href="https://github.com/bbangert/velruse/pull/21">small fix so it could use SQLite as a storage type</a> I was ready to rock and roll.</p>
<p id="p4">Once I had it pip installed and in my setup.py as a requirement the next step was to setup the ini to create and serve an instance of verluse along side my pyramid application. Here are the app and pipeline sections of the ini file.</p>
<pre class="brush: py">
[app:stockpot]
use = egg:stockpot
default_locale_name = en

[app:velruse]
use = egg:velruse
config_file = %(here)s/CONFIG.yaml

[pipeline:pstockpot]
pipeline = exc tm stockpot

[pipeline:pvelruse]
pipeline = exc tm velruse

[composite:main]
use = egg:Paste#urlmap
/ = pstockpot
/velruse = pvelruse
</pre>

<h3>Integrating the pieces</h3>
<p id="p5">velruse is configured using a YAML file. This file at a minimum needs a Store, which will hold the key,value pairs your callback receives. It also needs the OpenID and OpenID store which hold the generic realm, endpoint regex, and store information for all the providers. It is important for most providers that your realm and endpoint match what you've setup in their system.</p>
<p id="p6"><strong><em>Tip:</em></strong> <em>Use /etc/hosts file to point to your local machine so that when you are redirected to the endpoint with the GET token your application receives everything ok</em></p>
<pre class="brush: xml">
Store:
    Type: SQL
    DB: sqlite:////path/to/data/stockpot.db
Google:
    OAuth Consumer Key: MYKEY
    OAuth Consumer Secret: MYSECRET
OpenID:
    Realm: http://example.com:6543
    Endpoint Regex: http:/example.com
OpenID Store:
    Type: openid.store.memstore:MemoryStore
</pre>

<p id="p7">Now in your Pyramid application you will need to do some setup.</p>
<p id="p8">You will need to make sure that the KeyStorage table is being created along with your application tables and you will also need to create a callback method to handle the response from the OAuth endpoint. Also somewhere you'll need to add a simple view that contains the Google Login form.</p>
<pre class="brush: html">
<form action="/velruse/google/auth" method="post">
<input type="hidden" name="popup_mode" value="popup"/>
<input type="hidden" name="end_point" value="http://communitycookbook.net:6543/login"/>
<input type="submit" value="Login with Google"/>
</form>
</pre>

<p id="p9">And here is the simple addition to the models. This assumes you are using the same DB for your application and velruse.</p>
<pre class="brush: py">
from velruse.store.sqlstore import SQLBase

## inside initialize_sql
SQLBase.metadata.bind = engine
SQLBase.metadata.create_all(engine)
</pre>

<p id="p10">I added the callback code to my existing login handler, it looks for the token, attempts to lookup the values for that token in the KeyStorage of velruse. Upon the success of the lookup it loads the JSON string, extracts the verifiedEmail. The email is used to lookup a pre-existing user or create a new one if it doesn't exist. Then we call remember with the request and the user.id just like normal. Now we have a logged in user.</p>
<pre class="brush: py">
if 'token' in request.params:
    try:
        token = request.params.get('token')
        storage = DBSession.query(KeyStorage).filter_by(key=token).one()
        values = json.loads(storage.value)
        if values.get('status') == 'ok':
            email = values.get('profile',dict()).get('verifiedEmail')
            try:
                user = DBSession.query(User).filter_by(email=email).one()
            except orm.exc.NoResultFound:
                user = User(email)
                request.db.add(user)
                request.db.flush()

headers = remember(request, user.id)
            return HTTPFound(location=resource_url(request.next, request),
                             headers=headers)
    except orm.exc.NoResultFound:
        request.session.flash('Unable to Authenticate you using OpenID')
</pre>

<p id="p11">From here you can treat this user like any other. They have created an entry in your user table and you can start adding the user to groups or setting permanent properties on the user. All in all a pretty simple process when you put it down on paper, but I know for me it all felt a little overwhelming until I actually got it all put together and working.</p>
<h3>Feedback</h3>
<p id="p12">If you know of ways to improve the code or see obviously glaring issues please leave a comment or email me at my first name @ pieceofpy.com.</p>]]></content:encoded>
    </item>
    <item>
      <title>Quick SQLalchemy Shell and Blog Update</title>
      <link>http://pieceofpy.com/blog/2011/04/27/quick-sqlalchemy-shell-and-blog-update</link>
      <pubDate>Wed, 27 Apr 2011 14:00:00 EDT</pubDate>
      <category><![CDATA[python]]></category>
      <guid isPermaLink="true">http://pieceofpy.com/blog/2011/04/27/quick-sqlalchemy-shell-and-blog-update</guid>
      <description>Quick SQLalchemy Shell and Blog Update</description>
      <content:encoded><![CDATA[<h3>Update</h3>
<p id="p1">So I haven't updated my blog in a long time. Some people actually apparently still check in and read it every now and again.
A few more, even cared enough to asked me why I haven't updated my blog? Embarassed and ashamed I lied and said,
"Oh I've been busy.". Ok, so not so much busy as lazy. I recently switched to Blogofile and in the process I
never setup my version control to re-build and auto publish my commits to the site. Knowing that it wasn't setup I've been too lazy
to blog because I knew I would have to commit, login, build, and copy the files to the public folder. Yeah seriously, my barrier to
entry for somethings is that low, sue me!</p>
<p id="p2">Anyway, I've finally got it all setup to do the build and deploy for me and I even managed to setup SSH keys and have it mirror
the changes up to bitbucket for those interested in the source code of this Blogofile blog.</p>
<h3>Quick SQLalchemy Shell</h3>
<p id="p3">Ok so now for something I use a lot but took for granted until I used it in front of a friend the other day. Who asked me what? how?
A lot of times when I am working with SQLalchemy I just want a quick shell I can jump in to and start poking around.
I use this a lot of when people ask questions on IRC or the ML. It helps me play around with stuff if I don't know the answer right away.
It is also a great resource for myself when testing new features or trying to figure things out. Nice thing is you can also change it to do
reflection and easily have a session in to a pre-existing table structure, which is nice if you are like me and know SA better than SQL.</p>
<p id="p4">
The structure of the code is pretty simple:
</p><ul><li>sqla (folder)</li>
    <ul><li>__main__.py</li>
        <li>models.py</li>
    </ul></ul><pre class="brush: py">
# __main__.py
import os
import sqlalchemy as sa

from models import *

os.environ['PYTHONINSPECT'] = 'True'
engine = sa.create_engine('sqlite:///:memory', echo=True)
Base.metadata.create_all(engine)
Session = sa.orm.sessionmaker(bind=engine)
session = Session()
</pre>

And then you have models.py
<pre class="brush: py">
import sqlalchemy as sa
from sqlalchemy.ext.declarative import declarative_base

__all__ = ['Base', 'Test']

Base = declarative_base()

class Test(Base):
    __tablename__ = 'test'
    id = sa.Column(sa.Integer, primary_key=True)
</pre>


<p id="p5">
Now you can run something like this, changing your models to have what ever type of objects and relations you desire.
</p><pre class="brush: bash">
(sqla)mac-wwitzel:code wayne.witzel$ python sqla
2011-04-27 14:18:45,764 INFO sqlalchemy.engine.base.Engine.0x...d410 
PRAGMA table_info("test")
2011-04-27 14:18:45,764 INFO sqlalchemy.engine.base.Engine.0x...d410 ()
&gt;&gt;&gt; test = Test()
&gt;&gt;&gt; session.add(test)
&gt;&gt;&gt; session.commit()
2011-04-27 14:19:12,011 INFO sqlalchemy.engine.base.Engine.0x...d410 BEGIN (implicit)
2011-04-27 14:19:12,012 INFO sqlalchemy.engine.base.Engine.0x...d410 INSERT INTO test 
DEFAULT VALUES
2011-04-27 14:19:12,012 INFO sqlalchemy.engine.base.Engine.0x...d410 ()
2011-04-27 14:19:12,015 INFO sqlalchemy.engine.base.Engine.0x...d410 COMMIT
&gt;&gt;&gt; t = session.query(Test).first()
2011-04-27 14:19:20,571 INFO sqlalchemy.engine.base.Engine.0x...d410 BEGIN (implicit)
2011-04-27 14:19:20,571 INFO sqlalchemy.engine.base.Engine.0x...d410 SELECT test.id AS 
test_id 
FROM test 
 LIMIT 1 OFFSET 0
2011-04-27 14:19:20,571 INFO sqlalchemy.engine.base.Engine.0x...d410 ()
&gt;&gt;&gt; t
<models object="" at="">
&gt;&gt;&gt;
</models></pre>
]]></content:encoded>
    </item>
  </channel>
</rss>

