Do you realy need to optimize it for heavy load? Probably not, having you are using SQLite. The simple solution in this case is much better:
class Like(Base):
__tablename__ = 'Like'
id = Column(Integer, primary_key=True)
counter = Column(Integer, nullable=False, default=0)
o = session.merge(Like(id=1))
session.flush() # Required when it's new record
o.counter = Like.counter+1
session.commit()
There is a race condition between check and insertion, but I believe it won't beat you in practice.
When you realy need to optimize it a bit or fix this race condition, there is a INSERT OR IGNORE in SQLite to avoid check (there are 2 separate statements are executed yet):
clause = Like.__table__.insert(prefixes=['OR IGNORE'],
values=dict(id=1, counter=0))
session.execute(clause)
o = session.merge(Like(id=1, counter=Like.counter+1))
session.commit()
And finally there is a way to do it in single statement using INSERT OR REPLACE and subselect (there are other ways to do such thing in most other databases, e.g. ON DUPLICATE KEY in MySQL), but I doubt it will give you noticeable performance gain:
old = session.query(Like.counter).filter_by(id=1).statement.as_scalar()
new = func.ifnull(old, 0) + 1
clause = Like.__table__.insert(prefixes=['OR REPLACE'],
values=dict(id=1, counter=new))
session.execute(clause)