an extension for Flask that provides SQLAlchemy support.
1
vote
1answer
312 views
Flask-SQLAlchemy. Create several tables with all fields identical
I'm using Flask with its SQLAlchemy extension. I need to define several model classes, which will create tables in MySQL database. The tables will only differ by name, all the field names/datatypes in ...
2
votes
1answer
191 views
To use unicode or not in web development project using flask and sqlalchemy
I am working on a web development project using flask and sqlalchemy orm. My post is related to use of unicode in developing this app.
What I have understood till now about unicode :
If I want my ...
4
votes
1answer
974 views
SQLAlchemy ManyToMany secondary table with additional fields
I have 3 tables: User, Community, community_members (for relationship many2many of users and community).
I create this tables using Flask-SQLAlchemy:
community_members = ...
0
votes
1answer
570 views
how to let flask-sqlalchemy's query object select columns ( or say fields )?
I met some problem that wired me the whole day. I'm using flask/flask-sqlalchemy/postgresql, and I want to do this:
published_sites = msg_published.query \
.filter( and_(*filter_clause) ) ...
0
votes
1answer
425 views
SQLAlchemy configuring many-to-many relationship to self using Association
I am having problems configuring a many to many relationship to a model itself. I can configure a self-many-to-many relation when I use anormal relationship configuration i.e. one not using an ...
5
votes
2answers
1k views
How to calculate cumulative moving average in Python/SQLAlchemy/Flask
I'll give some context so it makes sense. I'm capturing Customer Ratings for Products in a table (Rating) and want to be able to return a Cumulative Moving Average of the ratings based on time.
A ...
5
votes
1answer
2k views
How to use avg and sum in SQLAlchemy query
I'm trying to return a totals/averages row from my dataset which contains the SUM of certain fields and the AVG of others.
I could do this in SQL via:
SELECT SUM(field1) as SumFld, AVG(field2) as ...
1
vote
1answer
271 views
Flask inherited classes of tables in multiple identical databases using __bind_key__
I'm trying to build an admin control panel that brings together 4 different ecommerce sites. The sites all have identical database structures (all MySQL).
What's Going Wrong?
I get 404 Not Found on ...
4
votes
2answers
878 views
How do you make a re-usable component with Flask-SQLAlchemy?
Lets say I have a part of my Flask app that I want to pull out and use in multiple different projects. It has SQLAlchemy models using Flask-SQLAlchemy, as well as views and templates. I can get the ...
1
vote
1answer
78 views
How can I decide which declarative model to instantiate, based on row information
I'm building a webapp that has optional Facebook Login. The users created through the Facebook API are handled differently at several points in my application. I want to encapsulate these differences ...
1
vote
2answers
256 views
sqlalchemy query issue
I have a user update function and I allow users to change their email address but the same address must be unique in the database so, before I update, I must check if their new email already exists in ...
3
votes
1answer
555 views
Cross database join in sqlalchemy
Is there a way in SQLAlchemy to do cross-database joins. To be specific, here is my use case:
Schema
db1.entity1
entity1_id: Primary Key
entity2_id: Foreign Key to db2.entity2.entity2_id
...
1
vote
1answer
542 views
SQLAlchemy: 'Model' object is not callable
I'm using Flask framework with sqlalchemy and I can't query some related table of a result.
Users > have many > orders
So I have the order and I want to query the user that order belongs to.
order ...
0
votes
0answers
291 views
SQLAlchemy caching queries?
I just installed latest version of SQLAlchemy (0.7.1) and I noticed a small change that I can't get rid of. If I filter all users for usernames that start with let's say 'tony%' than I clear that ...
10
votes
2answers
4k views
What's your folder layout for a Flask app divided in modules?
I am experimenting with flask coming from Django and I really like it. There is just one problem that I ran into. I read the flask docs and the part about big applications or something like that and ...
7
votes
1answer
1k views
SQLAlchemy ordering by count on a many to many relationship
This is a simplified example of my current models (I'm using the Flask SQLAlchemy extension):
like = db.Table(
'like',
db.Column('uid', db.Integer, db.ForeignKey('users.id')),
...
