an extension for Flask that provides SQLAlchemy support.

learn more… | top users | synonyms

1
vote
2answers
128 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
929 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
282 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 ...
0
votes
1answer
925 views

How to get value from dropdown list

I'm trying to get value from dropdown box into variable and then store it. I'm new to Flask and cant find anything in the documents about it. But I dont know how to get the value from dropdown list ...
0
votes
1answer
1k views

ImportError: No module named flask.ext.security.datastore.SQLAlchemyUserDatastore

Where i can find this module? ImportError: No module named flask.ext.security.datastore.SQLAlchemyUserDatastore
4
votes
1answer
249 views

flask-sqlalchemy - PostgreSQL - Define specific schema for table?

I want to define a specific schema for a 'model' using flask-sqlalchemy. When you create a table object in sqlalchemy itself it has a parameter to pass for schema name. How do I do this in ...
3
votes
3answers
76 views

Selecting all users who subscribe to a particular user, but to whom that user does not subscribe

I have the following table definitions: subscriptions = db.Table("subscriptions", db.Column("subscriber_id", db.Integer, db.ForeignKey("users.id"), primary_key=True), ...
0
votes
1answer
73 views

Convert relationship to query object

Let's say I have many to many relationship between tables User and Car. It works fine when I use User.query.filter_by(name='somename').all().cars Car.query.filter_by(vin='xxxxxx').all().users I ...
2
votes
1answer
489 views

Flask SqlAlchemy : TypeError: 'Class' object is not iterable

I'm following the Flask-SQLAlchemy tutorial. I have Flask 0.9, sqlalchemy 0.7.8 and flask-sqlalchemy 0.16 on python 2.6. (and I work with eclipse) (The tuto is here : ...
3
votes
2answers
2k views

Flask - SQLAlchemy: how to update/insert row in db

I have been playing with the combo Flask, Flask-SQLAlchemy, Flask-WTF and Jinja2 for a small app. My question is how to insert or update a specific record in the db? I have read some of the other ...
3
votes
1answer
587 views

Flask Sqlalchemy : relationships between different modules

I'm following the Flask-SQLAlchemy tutorial. I have Flask 0.9, sqlalchemy 0.7.8 and flask-sqlalchemy 0.16 on python 2.6. I'm trying to create a "one to many" relationship, like in their tutorial. ...
1
vote
2answers
2k views

Setting up Flask-SQLAlchemy

Trying to set up Flask and SQLAlchemy on Windows but I've been running into issues. I've been using Flask-SQLAlchemy along with PostgreSQL 9.1.4 (32 bit) and the Psycopg2 package. Here are the ...
1
vote
0answers
129 views

How to organize multiple sites that share the same models using Flask?

I started creating a flask application and created models using the flask sqlalchemy extension. I wanted to create multiple apps (or sites) that share models. The sites will have their own domain. ...
0
votes
0answers
53 views

How can I convert this MySQL search query to sqlalchemy ORM?

I have the following search query: select pid from product_FTSI where MATCH(keyword) AGAINST('+$포 +포스 +스트 +트잇 +잇 +지 +지우 +우개 +개$') How can I convert this query to SQLAlchemy ORM?
1
vote
1answer
82 views

cannot access db from script

I'm trying to delete a row from a table in my database from a script. Perhaps this isn't the easiest way but I think it should be possible. I'm trying the following: from stemewebapp import app from ...
12
votes
2answers
2k views

Structure of flask applications

I'm trying to create a simple, but not trivial application with Flask and I keep running into a situation which is not explained well in the docs. I'd like my app to be split between different ...
2
votes
1answer
368 views

Many-to-many multi-database join with Flask-SQLAlchemy

I'm trying to make this many-to-many join work with Flask-SQLAlchemy and two MySQL databases, and it's very close except it's using the wrong database for the join table. Here's the basics... I've ...
0
votes
0answers
71 views

Index not working with postgresql and sqlalchemy [duplicate]

I have a table in postgresql that I am accessing through sqlalchemy. When I imported the data, I imported the indexes to a field like this: db.Column(db.Integer, primary_key=True) When I try to add ...
1
vote
2answers
316 views

How to send http request to python flask server from desktop application?

I have configured python server using flask framework. Now I want to send request to server from my desktop application. My server location is : http://127.0.0.1:5000/ I have written code which work ...
0
votes
1answer
68 views

ORM query with or statement

I am trying to query users by list of id using in statement http://www.w3schools.com/sql/sql_in.asp It is possible to do it without string query and execute function? I am looking for something like ...
0
votes
1answer
170 views

SQLAlchemy - How to MySQL JOIN

I have a MySQL database with the following structure and was hoping someone could help me convert the SQL query below to SQLAlchemy. Database structure: **bottom:** id name middle_id **middle:** id ...
0
votes
1answer
214 views

SQLAlchemy - Querying Multiple Tables and Combining Results

Answer no longer needed. I have two tables as follows in my MySQL database: **Child** id name parent_id **Parent** id name What I want to do is query both tables but return unique results (no ...
3
votes
1answer
146 views

SQLAlchemy - Searching Three Tables at Once

EDIT: Please excuse me, as I have just realised I've made an error with the example below. Here's what I want to achieve: Say I have the three tables as described below. When a user enters a query, ...
0
votes
1answer
151 views

SQLAlchemy menu items hierarchy/ordering

I am pretty new to ORM so I need some help with creating menu for my Flask app. I have implemented model MenuItem (src is below). Bullet-points are: It has one-to-many relationship with itself. It ...
2
votes
1answer
274 views

What is the most elegant way to assign a new set of many-to-many related tags via association_proxy in SQLAlchemy?

This is my Flask-SQLAlchemy Declarative code: from sqlalchemy.ext.associationproxy import association_proxy from my_flask_project import db tagging = db.Table('tagging', db.Column('tag_id', ...
0
votes
0answers
668 views

Peewee vs SQLAlcheymy for Flask project [closed]

Hi guys I want to start a new Flask project and I am trying to choose an ORM. I want it to be really fast so dirty trackign and complex joins are out of questions anyway but I am also interested in ...
0
votes
2answers
399 views

Sqlalchemy: One to Many relationship combined with Many to Many relationship

I've got a User and Group table with a many to many relationship _usergroup_table = db.Table('usergroup_table', db.metadata, db.Column('user_id', db.Integer, db.ForeignKey('user.id')), ...
1
vote
1answer
41 views

How do I make a relationship to a classless value in SQLAlchemy?

I'm using SQLAlchemy under Flask. I have a table that represents a mode my system can be in. I also have a table that contains lists of elevations that are applicable to each mode. (So this is a ...
0
votes
1answer
725 views

Python Flask, SQLAlchemy relationship

I've been trying to fix this problems for a few hours already, I cannot manage to get SQLAlchemy working (it was working untill I put the two new functions, User and Registration) from ...
5
votes
1answer
143 views

Inheritance + Foreign Keys

I have been absolutely racking my brain over this, and can't seem to work out how to get around the issue. Please note that I have cut alot of irrelevant fields out of my models I am in the middle of ...
2
votes
2answers
179 views

How can I require authentication for anything under /admin path?

I'm using Flask and I'd like to protect everything under /admin path. How can I do that? I'm sure there's a better way than checking for the session in every function.
0
votes
1answer
104 views

assign list elements to database entity in sqlalchemy from a list

I have a simple model as follows, i have a list of games and i want all the players to assign one and only one game, from the list of games. How would i do it in sqlalchemy. As of now i am using ...
2
votes
1answer
90 views

Combining relationships

I have a model Zone, a model Entity and a model Transit. Transit is minimally defined as: class Entity(db.Model): __tablename__ = 'entities' id = db.Column(db.Integer, primary_key=True) ...
3
votes
1answer
110 views

Relating a model to multiple other models in a single relationship

I have a model Thing which can be subclassed by several types of Thing like PointyThing and TastyThing. I have a second model, Instance that is related one-to-many to Things (one Instance may be of ...
0
votes
1answer
2k views

SqlAlchemy won't accept datetime.datetime.now value in a DateTime column

I should first mention that I'm using SqlAlchemy through Flask-SqlAlchemy. I don't believe this affects the issue but if it does, please let me know. Here is the relevant part of the error message ...
1
vote
1answer
193 views

One-to-many relationship to multiple models

I have a model Thing and a model Action. There is a one-to-many relationship between Things and Actions. However, I would like to be able to subclass Action to have (for example) BuildAction, ...
0
votes
1answer
127 views

Many-to-many relationships without a linking table/model

I have a model User and a model Thing. A User can own zero or more Things. A Thing may be owned by zero or more Users. Ordinarily I would add in a third table Thing_Ownership linking Users to Things ...
3
votes
1answer
454 views

Many to many using Flask-SQLAlchemy returns raw sql instead of executed

Im using the python framework flask with sqlalchemy. My many-to-many looks like this: collections_questions = db.Table('collections_questions', ...
0
votes
1answer
599 views

Flask-SQLAlchemy nullable=False

I'm messing around with Flask and the Flask-SQLAlchemy extension to create a simple registration form. In my User class, I have the attribute "email" set to nullable=False, but when I test the form on ...
17
votes
1answer
2k views

Flask-SQLAlchemy import/context issue

I want to structure my Flask app something like: ./site.py ./apps/members/__init__.py ./apps/members/models.py apps.members is a Flask Blueprint. Now, in order to create the model classes I need ...
1
vote
2answers
657 views

how to update SQLAlchemy row entry

Here is the question Assume table has three columns, usrname,passwd and no_of_logins. when user tries to login its checked for an entry with query like ...
0
votes
1answer
79 views

Update the Data model

I have Data Model (class) for example looking like this: class User(db.Model): id = db.Column(db.Integer, primary_key=True) username = db.Column(db.String(20), unique=True) password = ...
5
votes
2answers
1k views

read slave , read-write master setup

I have a Flask,SQLAlchemy webapp which uses a single mysql server. I want to expand the database setup to have a read-only slave server such that I can spread the reads between both master and slave ...
1
vote
0answers
203 views

How to optimize updating a record when using SQLAlchemy and Flask

I'm using SQLAlchemy with Flask and the Flask-SQLAlchemy extension. What I'm confused about is how to optimize the updating of a record. As a proof of concept I wrote the following endpoints: ...
8
votes
1answer
1k views

Setting delete-orphan on SQLAlchemy relationship causes AssertionError: This AttributeImpl is not configured to track parents

this is my Flask-SQLAlchemy Declarative code: from sqlalchemy.ext.associationproxy import association_proxy from my_flask_project import db tagging = db.Table('tagging', db.Column('tag_id', ...
2
votes
1answer
660 views

SQLAlchemy Polymorphic Relationship with Concrete Inheritance

I am using the concrete table inheritance with SQLAlchemy. In declartive style model class, I have configured it successfully. My code just like: class Entry(AbstractConcreteBase, db.Model): ...
2
votes
2answers
204 views

SqlAlchemy Model association based on record data

There is an info table and it has relationship to car table or suvtable. Itis specified in info.type field. So how can I create association on fly based on the type data of the record? class ...
1
vote
1answer
478 views

flask-sqlalchemy with dynamic database connections

I have one main db, in which each client's own db connection is stored. So every client works with 2 db: main and its own db, connection of which must be decided for each http call. How can I do ...
2
votes
1answer
442 views

2 relationships of the same tablename confusing SQLAlchemy

IE: class Share(db.Model): """ Stores the Checkpoint shares between users """ id = db.Column(db.Integer, primary_key=True) user_from_id = db.Column(db.Integer, ...
1
vote
1answer
724 views

Simple validation with SQLAlchemy

I'm new to sqlalchemy, and I'm trying to achieve simple validation of model's fields, as provided by Django ORM (min & max for Integer, email, ...). Can SQLAlchemy do this sort of field ...