Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to get an object from the database if it already exists (based on provided parameters) or create it if it does not.

Django's get_or_create does this. Is there an equivalent shortcut in SQLAlchemy?

I'm currently writing it out explicitly like this:

def get_or_create_instrument(session, serial_number):
    instrument = session.query(Instrument).filter_by(serial_number=serial_number).first()
    if instrument:
        return instrument
    else:
        instrument = Instrument(serial_number)
        session.add(instrument)
        return instrument
share|improve this question

3 Answers

up vote 11 down vote accepted

That's basically the way to do it, there is no shortcut readily available AFAIK.

You could generalize it ofcourse:

def get_or_create(session, model, defaults=None, **kwargs):
    instance = session.query(model).filter_by(**kwargs).first()
    if instance:
        return instance, False
    else:
        params = dict((k, v) for k, v in kwargs.iteritems() if not isinstance(v, ClauseElement))
        params.update(defaults)
        instance = model(**params)
        session.add(instance)
        return instance, True
share|improve this answer
1  
I think that where you read "session.Query(model.filter_by(**kwargs).first()", you should read "session.Query(model.filter_by(**kwargs)).first()". – pkoch Jan 12 '11 at 15:53
@pkoch: indeed it should, thanks :) – WoLpH Jan 12 '11 at 17:43
Should there be a lock around this so that another thread doesn't create an instance before this thread has a chance to? – EoghanM May 22 '11 at 21:34
@EoghanM: Normally your session would be threadlocal so this won't matter. The SQLAlchemy session is not meant to be thread-safe. – WoLpH May 23 '11 at 1:18
@WolpH it can be another process trying to create the same record simultaneously. Look at Django's implementation of get_or_create. It checks for integrity error, and relies upon proper use of unique constraints. – Ivan Virabyan May 21 '12 at 6:17
show 8 more comments

Following the solution of @WoLpH, this is the code that worked for me (simple version):

def get_or_create(session, model, **kwargs):
    instance = session.query(model).filter_by(**kwargs).first()
    if instance:
        return instance
    else:
        instance = model(**kwargs)
        return instance

With this, I'm able to get_or_create any object of my model.

Suppose my model object is :

class Country(Base):
    __tablename__ = 'countries'
    id = Column(Integer, primary_key=True)
    name = Column(String, unique=True)

To get or create my object I write :

myCountry = get_or_create(session, Country, name=countryName)
share|improve this answer
For those of you searching like me, this is the proper solution to create a row if it does not already exist. – Spencer Rathbun Feb 2 '12 at 19:11
1  
Don't you need to add the new instance to the session? Otherwise if you issue a session.commit() in the calling code, nothing will happen as the new instance isn't added to the session. – CadentOrange May 22 at 10:40

I think I was just looking for the same thing. This SQLALchemy recipe does the job nice and elegant.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.