an extension for Flask that provides SQLAlchemy support.

learn more… | top users | synonyms

0
votes
1answer
116 views

flask sqlalchemy execute method every time object is updated

what is the method name that gets executed every time a member of a class is updated? for example, init is run when an object is instantiated: class Foo(db.Model) id = db.Column(db.Integer, ...
0
votes
1answer
208 views

Convert variable into class variable (no idea what to name it)

Using Flask Flask-sqlalchemy Sqlalchemy Jquery Datatables (jquery plugin) Jeditable (jquery plugin) Consider this user class ( straight out of flask-sqlalchemy docs): class User(db.Model): ...
1
vote
2answers
92 views

How to create two mutually dependent objects in SQLAlchemy?

I have two Python classes Note and Link mapping to PostgresQL tables. Note has a foreign-key reference to Link, while Link points back to the node through a piece of JSON text. Links point to other ...
0
votes
1answer
94 views

flask sqlalchemy column constraint for positive integer

how can i define a column as a positive integer using flask sqlalchemy? i am hoping the answer would look something like this: class City(db.Model): id = db.Column(db.Integer, primary_key=True) ...
1
vote
1answer
190 views

Flask-Restless GET request throwing up SQLAlchemy error

I'm needing to implement an API for my Flask application and have seen recommendations for Flask-Restless. I've run in to kind of a wall with just basic usage of this library and hoping someone who ...
2
votes
1answer
221 views

Flask-SQLAlchemy Data Model Relationship Problems

I'm trying to create a system where a Person is part of one WorkGroup, and each WorkGroup contains many Person s. Person also contains a list of previously-matched Person s. Below is what I have so ...
2
votes
1answer
208 views

Flask-SQLAlchemy won't update or delete a row

I want to either update a row in the database, if it exists, or create it if it doesn't. I have a class that first sets the instance variable user: self.user = ...
0
votes
0answers
47 views

Flask-SQLAlchemy - Field calculated from other fields

I'm using the SQLAlchemy ORM with Flask (http://packages.python.org/Flask-SQLAlchemy/) and need to add a field in my Model which doesn't exist in the table but is instead caculated from other fields. ...
0
votes
1answer
74 views

Flask uWSGI fails with SQL_ALCHEMY_URI set to MySQL db

I have a flask app set up according to this tutorial. The app produces a "uWSGI Error: Python application not found" error when the following line is included: app.config['SQLALCHEMY_DATABASE_URI'] = ...
0
votes
1answer
192 views

using pythons Unit-testing setUp tearDown with flask-sql-alchemy

The project is a webapp being deployed on heroku: Here are my simple unitests in db_test_many_create.py: import unittest from petalapp.database.models import User, Hospital, Data, ROLE_USER from ...
1
vote
1answer
151 views

Flask and SQLAlchemy and the MetaData object

it's the first time i am using this environment. The part of SQLAlchemy i am willing to use is just the one that allows me to query the database using Table objects with autoload = True. I am doing ...
0
votes
1answer
99 views

Web App Database Setup

Firstly, I have searched Yahoo and haven't found a good answer. All the Flask SQLAlchemy tutorials use SQLite, but from what I read SQLite isn't really good with Heroku - or at least a Yahoo search ...
0
votes
1answer
222 views

Flask-SQLAlchemy many-to-many relationship on single table

I'm trying to set up a many-to-many relationship using Flask-SQLAlchemy so that I can have a list of "related videos" for each entry in a Videos table. class Videos(db.Model): id = ...
0
votes
1answer
81 views

SQLAlchemy and polymorphic inheritance with backrefs

I have the classes Node and Leaf (Node) as shown below: It works fine, but I'd prefer to shift the leafs and subleafs definitions to the Leaf (Node) class. How do I achieve that? class Node ...
0
votes
1answer
74 views

SQLAlchemy and filtering polymorphic queries

I've the classes Node and Leaf (Node) as shown below: class Node (db.Model): __mapper_args__ = {'polymorphic_identity':'node', 'polymorphic_on':'type'} id = db.Column (db.Integer, ...
0
votes
2answers
486 views

RESTful interface in Flask and issues serializing

I'm learning Backbone.js and Flask (and Flask-sqlalchemy). I chose Flask because I read that it plays well with Backbone implementing RESTful interfaces. I'm currently following a course that uses ...
0
votes
1answer
63 views

Querying multiple joined inherited tables filtered by a many-to-many relationship

I have an SQLAlchemy scheme that looks roughly like this: participation = db.Table('participation', db.Column('artist_id', db.Integer, db.ForeignKey('artist.id'), ...
1
vote
0answers
200 views

Flask-sqlalchemy `create_all()`, specifying models

I have the file with commands, separated from models. The models had executed only after I had imported all the models from models to my starter file. db = SQLAlchemy(app) from ...
1
vote
1answer
284 views

How do I use reflection/autoload in flask-sqlalchemy

I'm trying out flask-sqlalchemy in a simple test app. I'm running a SQL server, and I can connect to from Flask Using SQLalchemy like so: from flask import render_template from app import app, db ...
9
votes
3answers
922 views

Using Flask-SQLAlchemy in Blueprint models without reference to the app

I'm trying to create a "modular application" in Flask using Blueprints. When creating models, however, I'm running into the problem of having to reference the app in order to get the db-object ...
2
votes
2answers
866 views

How I do to update data on many-to-many with WTForms and SQLAlchemy?

I've a small problem on my App build with Flask Framework. I'm trying to create a simple User + Permissions module. To archive it, I've a many-to-many relation between Users and Permissions table. ...
0
votes
1answer
189 views

sqlalchemy count related

I have been using django's ORM and sqlalchemy has me beat a.t.m. I have this: recipie_voters = db.Table('recipie_voters', db.Column('user_id', db.Integer, db.ForeignKey('user.id')), ...
2
votes
2answers
2k views

sqlalchemy exists for query

How to check that data in query is exists? For example: users_query = User.query.filter_by(email='x@x.com') How I can check that users with that email exists? Now i check this with ...
0
votes
1answer
229 views

How can I set the current session as 'logged in' using Python in Flask with Flask-SQLAlchemy?

I am trying to learn how to build a basic Flask application with Python. I first followed their excellent tutorial to make a simple blog. The tutorial has you import session from flask. This is later ...
4
votes
1answer
277 views

How should I run alembic migrations on Heroku?

I'm trying to run a fairly simple Flask + SQLAlchemy site on Heroku, but I'm not sure how I should run my migrations to set up my DB. When I run heroku run alembic upgrade head, I get the following ...
2
votes
1answer
219 views

Returning custom property from flask-restless

I want to return a custom property from flask restless such as class Item(db.Model): creator_id = db.Column(db.Integer, db.ForeignKey('User.id')) owner_id = db.Column(db.Integer, ...
0
votes
2answers
391 views

sqlalchemy group_by and count

I'm using flask as a python framework with sqlalchemy. The models use the query_property which helps me build queries: class Person(object): query = db_session.query_property() .... ...
0
votes
1answer
106 views

sqlalchemy query with condition on child relationship

I have the following models in sqlalchemy: class Magazine(db.Model): id= db.Column(db.Integer, primary_key=True) name= db.Column(db.String(50)) issues= db.relationship('Issue', ...
1
vote
1answer
343 views

sqlalchemy: Error with commit on session - 'SessionMaker' object has no attribute '_model_changes'

I'm new to SqlAlchemy. We were working primarily with Flask, but in a particular case I needed a manual database connection. So I launched a new db connection with something like this: write_engine = ...
1
vote
3answers
105 views

Python/SQLAlchemcy “or” functionality

I can't seem to find out why "or" is behaving the way it is. I'm using SQLAlchemy and WTForms.ext.sqlalchemy.QuerySelectField and QuerySelectField can have query_factory set, but if it's missing it ...
0
votes
1answer
242 views

SQL Alchemy NULL identity key

Ive defined the model's id field of the table like this id = Column(Integer(15, unsigned=True), nullable=False, server_default='0', primary_key=True, ...
1
vote
2answers
271 views

SQLAlchemy Subclass/Inheritance Relationships

class Geolocation(db.Model): __tablename__ = "geolocation" id = db.Column(db.Integer, primary_key=True) latitude = db.Column(db.Float) longitude = db.Column(db.Float) elevation = ...
1
vote
1answer
176 views

How do I get the number of rows affected with SQL Alchemy?

How do I get the number of rows affected for an update statement with sqlalchemy? (I am using mysql and python/pyramid): from sqlalchemy.engine.base import ResultProxy @classmethod def myupdate(cls, ...
1
vote
1answer
321 views

SQLAlchemy if/not query session already attached

I'm getting data from a website that posts scores from high school football and putting it into a Flask project. I'm using Flask-SQLAlchemy and trying to check to see if the Game exists already; if it ...
1
vote
1answer
216 views

How to properly test a Python Flask system based on SQLAlchemy Declarative

Update: Based on what I found and how I got it working, here is a template solution that works for testing the underlying SQLAlchemy systems using the Declarative extension. import unittest from ...
1
vote
1answer
270 views

sqlalchemy conditional multiple filters on dynamic lazy relationship

I am using sqlalchemy with the following models class Page(db.Model): id= .. posts = db.relationship('Post', lazy='dynamic') class Post(db.Model): id=.. page_id=.. author= ...
2
votes
1answer
422 views

No changes detected in Alembic autogeneration of migrations with Flask-SQLAlchemy

I'm having trouble getting Alembic to autogenerate candidate migrations from changes to classes using db.Model (Flask-SQLAlchemy) instead of Base. I've modified env.py to create my Flask app, import ...
0
votes
1answer
51 views

I keep getting Nonetype but I dont think I should be?

I'm using sqlalchemy-flask for my projects as well as json module. I have two classes I'm pulling data from. The two data types are Ints and List (I made sure of this by using type). When I try ...
0
votes
1answer
223 views

When a Flask application with Flask-SQLAlchemy is running, how do I use MySQL client on the same database at the same time?

When I run a Flask application which is using Flask-SQLAlchemy, it seems that Flask-SQLAlchemy is holding a session and when I issue a MySQL command, like alter table add column, in MySQL client ...
2
votes
1answer
328 views

Fastest Way to Create a New Object Only if it Doesn't Already Exist (SQLAlchemy)

I'm looking for the fastest way to create a new SQLAlchemy object only if it doesn't already exist in the database. The way I'm doing it now is by first getting the count of the query to see if it ...
3
votes
2answers
334 views

Remember form data for pagination

In my Flask application, I have a view which renders a table of items by using the Flask-SQLAlchemy pagination method. Great stuff so far. But I want to add sorting and filtering, so I created a form ...
4
votes
1answer
732 views

Flask-SQLAlchemy: Photo column type

In a web application I'm coding with Flask/SQLAlchemy, several of my models needs a "Photo" column type, which would handle storing the original image somewhere on the filesystem, and creating ...
7
votes
2answers
2k views

Flask-alchemy update row

Just wanted to say since it's my very first post thank you StackOverflow for getting me out of a buttload of tight spots. Second thing I need to mention is that I'm just starting with web python. Now ...
2
votes
1answer
631 views

Package setup.py and Flask directory structure

Update: added setup.py content. I have the following directory structure: setup.py packagename/ __init__.py useless_file.py In __init__.py, I have the following: from flask import Flask ...
3
votes
1answer
450 views

How Can I Automatically Populate SQLAlchemy Database Fields? (Flask-SQLAlchemy)

I've got a simple User model, defined like so: # models.py from datetime import datetime from myapp import db class User(db.Model): id = db.Column(db.Integer(), primary_key=True) email = ...
1
vote
2answers
175 views

How can I limit the number of returned results to only the 1000 latest entries with Flask / SQLAlchemy?

I'm looking for something similar to how reddit/hackernews specifically (this seems a common approach by a lot of major sites) handle their 'new' listing. It appears to work like so: when a new link ...
0
votes
1answer
233 views

How to separate Master Slave (DB read / writes) in Flask Sqlalchemy

I'm trying to separate the Read and write DB operations via Flask Sqlalchemy. I'm using binds to connect to the mysql databases. I would want to perform the write operation in Master and Reads from ...
1
vote
2answers
127 views

Where to put db_session related statements in sqlalchemy based web application?

I am creating a web application using flask and sqlalchemy. I am confused about putting db_session related statements like db_session.add(). There are two approaches I am thinking of. One is to ...
1
vote
4answers
889 views

Flask SQLAlchemy query, specify column names

How do I specify the column that I want in my query using a model. (it selects all columns by default) I know how to do this with the sqlalchmey session: session.query(self.col1) but how do I do with ...
5
votes
4answers
277 views

Execute some code when an SQLAlchemy object's deletion is actually committed

I have a SQLAlchemy model that represents a file and thus contains the path to an actual file. Since deletion of the database row and file should go along (so no orphaned files are left and no rows ...