an extension for Flask that provides SQLAlchemy support.
1
vote
1answer
20 views
Why does Flask-Security Cause a new KVSession Record for Each Request?
I'm trying out using Flask-KVSession as an alternative session implementation for a Flask web site. I've created a test website (see Code 1 below). When I run this, I can use the browser to store ...
1
vote
1answer
14 views
SQLALchemy adjacency list get all parents
Here's an adjacency list example:
class TreeNode(Base):
__tablename__ = 'tree'
id = Column(Integer, primary_key=True)
parent_id = Column(Integer, ForeignKey(id))
name = ...
0
votes
1answer
16 views
Flask-SQLAlchemy TimeoutError
My backend configuration is :
Ubuntu 12.04
Python 2.7
Flask 0.9
Flask-SQLAlchemy
Postgres 9.2
I've got this error message:
TimeoutError: QueuePool limit of size 5 overflow 10 reached, ...
0
votes
1answer
16 views
Alembic : How to add unique constraint to existing column
I have a table 'test' having a column 'Name' with no constraints. I need to Alter this column by giving it 'unique' constraint. How should I do it?
Should I use op.alter_column( '???' ) or ...
0
votes
1answer
31 views
Flask-SQLAlchemy how to delete all rows in a single table
How do I delete all rows in a single table using Flask-SQLAlchemy?
Looking for something like this:
>>> users = models.User.query.all()
>>> models.db.session.delete(users)
# but ...
1
vote
1answer
47 views
Case Insensitive Flask-SQLAlchemy Query
I'm using Flask-SQLAlchemy to query from a database of users; however, while
user = models.User.query.filter_by(username="ganye").first()
will return
<User u'ganye'>
doing
user = ...
3
votes
0answers
22 views
Cross-database join in Flask-SQLAlchemy
I'm trying to do a cross-database join in Flask-SQLAlchemy:
app = Flask(__name__)
app.config['SQLALCHEMY_DATABASE_URI'] = '...Master...'
app.config['SQLALCHEMY_BINDS'] = { 'Billing': '...Billing...' ...
2
votes
2answers
48 views
Flask-SQLAlchemy InvalidRequestError: Object is already attached to session
I'm creating a forum project using Flask, and managing all the users, threads, posts, etc. using Flask-SQLAlchemy. However, I've found that when I attempt to do x (e.g. edit a post), I get an ...
0
votes
1answer
54 views
How to populate a model having foreign key using csv using Flask-SQLAlchemy?
I have 2 model classes as below:
class Domain(db.Model):
__tablename__ = 'domain'
id = db.Column(db.Integer, primary_key=True)
domain_name = db.Column(db.String(30), unique=True)
...
0
votes
0answers
31 views
Conundrum : Not Sorting Objects With SQLAlchemy
I have a feeling SQLAlchemy is only checking the first digit when it orders the groups by ID, how do I get it to check all the digits of the ID?
groups = ...
0
votes
1answer
32 views
Inserting new records with one-to-many relationship in flask-sqlalchemy
I'm following the flask-sqlalchemy tutorial on declaring models regarding one-to-many relationship. The example code is as follows:
class Person(db.Model):
id = db.Column(db.Integer, ...
0
votes
1answer
44 views
Insert new one-to-many data into tables with SQLAlchemy ORM
I'm trying to insert rows into a database that has three tables:
Artists
Songs
Media (like a youtube video)
Artists has a one-to-many relationship with Songs and Songs has one-to-many relationship ...
0
votes
1answer
37 views
How to prevent double data submission in flask-sqlalchemy
I'm studying now main concepts of flask and flask-sqlalchemy. Keeping in my mind info from the tutorial (intro and contexts) I'm trying to create a simple database.
My Flask app is strucured as ...
0
votes
1answer
37 views
Invalid Login logic in Flask Python
I'm using Flask with SQLAlchemy and Flask-Login.
I can successfully login and logout a registered user.
What I find confusing is when I enter an incorrect password on the login page, I'm returned ...
0
votes
1answer
35 views
flask-sqlalchemy select count()
i have query like this
query = Notification.query(db.func.count(Notification.id))
query = query.filter(Notification.read == False)
query = query.filter(Notification.id == recv_id)
return query.all()
...
0
votes
0answers
39 views
How to maintain part of data in one table using flask-admin view?
I have a table "Label" with columns :
id | name | type
The type column get 3 values:"Category","Tags","MAT", so that this one table contains three type of data.
Now, I want to only maintain the ...
0
votes
1answer
47 views
Flask and SQLAlchemy Questions
I am currently using Flask and SQLAlchemy to create a web application.
However, I am in the process of creating a User model with passwords and usernames. Do I need to find my own libraries to salt ...
0
votes
0answers
53 views
SQLAlchemy A conflicting state is already present in the identity map for key
I'm using the Flask-SqlAlchemy extension around SQLAlchemy to work with a SQLite database in Python.
I have a many-to-many relationship set up between "Format" and "Movie" models. I have successfully ...
1
vote
1answer
21 views
Remapping an SQLAlchemy inheritance relation to a different postgres schema
If I have a simple join-based inheritance relationship in SQLAlchemy that I've replicated between schemas using "SET search_path", how can I access them simultaneously in order to do a copy between ...
0
votes
0answers
38 views
Extension to the flask
Is it possible to make an extension to the flask, which worked with the database (create tables, queries)? For example, the expansion of a "blog".
from flask.ext.blog import Blog()
blog = blog(app, ...
3
votes
2answers
174 views
flask-admin not showing foreignkey columns
class Parent(db.Model):
id = db.Column(db.Integer, primary_key = True)
name = db.Column(db.String(120))
def __repr_(self):
return '<Parent %r>' % (self.name)
...
0
votes
1answer
95 views
AttributeError: 'int' object has no attribute '_sa_instance_state'
I'm working on forum template using Flask. When I attempt creating a new thread in the browser using forms, SQLAlchemy throws an AttributeError. The problem showed up when I tried implementing a ...
0
votes
0answers
48 views
Flask unit tests with SQLAlchemy and PostgreSQL exhausts db connections
I'm running a suite of fairly straightforward test cases using Flask, SQLAlchemy, and PostgreSQL. Using an application factory, I've defined a base unit test class like so:
class ...
1
vote
1answer
52 views
flask sqlalchemy querying a column with not equals
I can query my seats table for all seats where there is no invite assigned:
seats = Seat.query.filter_by(invite=None).all()
However, when querying for all seats that have an invite assigned, I get ...
2
votes
1answer
26 views
SqlAlchemy: Convert inherited type from one to another
Let's say I have two different types both on the same database table (single table inheritance):
class Employee(db.Model):
id = db.Column(db.Integer, primary_key = True)
name = ...
0
votes
0answers
17 views
How to catch exception gloablly of Flask-Sqlalchemy?
I have a global 500 error handler like this, which I think should catch all the errors those are not caught in program.
@app.errorhandler(500)
def ERROR500(e):
print 'GLOBAL ERROR: ', e
...
1
vote
2answers
81 views
Flask: How to store credentials in session and retrieve them?
I am working on a project where each of my REST endpoints needs to be authenticated. An example is
@login_required
def get_transactions(self):
pass
I have a User model which looks like
class ...
0
votes
1answer
36 views
Joining 2 Tables on Multiple Non Foreign Key Columns in Flask with SQLAlchemy and Retrieving All Columns
I have a few tables shown below that I would like to join on columns that are not foreign keys to each other's tables and then have access to the columns of both. Here are the classes:
class ...
1
vote
1answer
100 views
SQLAlchemy / Flask / PostgreSQL pool connection
After having played for a long time with Django, I'm trying a bit of Flask with SQLAlchemy, and I must say I quite like it. However there is something that I don't get:
I have a small Flask / ...
1
vote
2answers
102 views
Implementing Flask-Login with multiple User Classes
I am writing an app that has multiple classes that function as Users (for example, a School Account and a Staff account). I'm trying to use Flask-Login to make this easy but I'm not quite sure how to ...
1
vote
1answer
80 views
Multiple order_by sqlalchemy / Flask
I am using Flask and SQLAlchemy.
Let's say I have a User model with fields 'popularity' and 'date_created'. I want to do the following query:
SELECT * FROM user ORDER BY popularity DESC, ...
0
votes
1answer
56 views
How do you create a table with Sqlalchemy within a transaction in Postgres?
I'm using Sqlalchemy in a multitenant Flask application and need to create tables on the fly when a new tenant is added. I've been using Table.create to create individual tables within a new Postgres ...
0
votes
3answers
168 views
Filter relationships and paginate in Flask-SQLAlchemy
Say, we have the following relationships:
a person can have many email addresses
a email service provider can (obviously) serve multiple email address
So, it's a many to many relationship. I have ...
1
vote
1answer
61 views
Alembic: How to migrate custom type in a model?
My User model is
class User(UserMixin, db.Model):
__tablename__ = 'users'
# noinspection PyShadowingBuiltins
uuid = Column('uuid', GUID(), default=uuid.uuid4, primary_key=True,
...
1
vote
1answer
147 views
Alembic --autogenerate producing empty migration
I am trying to use Alembic for the first time and want to use --autogenerate feature described here
My project structure looks like
project/
configuration/
__init__.py
...
2
votes
1answer
121 views
'RelationshipProperty' object has no attribute 'c' error in sqlalchemy
I'm having a lot of trouble implementing SQLalchemy for a legacy MSSQL database. It is a big existing database, so I wanted to use sqlautocode to generate the files for me, because using autoload to ...
2
votes
3answers
68 views
Alembic: alembic revision says Import Error
I am trying to integrate my Flask project with Alembic
My application structure looks like
project/
configuration/
__init__.py
dev.py
...
0
votes
1answer
50 views
sqlalchemy test: adding same user twice not throwing exception when unique=True
I am using Flask and my SQLAlchemy model is
class User(UserMixin, db.Model):
__tablename__ = 'users'
# noinspection PyShadowingBuiltins
uuid = Column('uuid', GUID(), default=uuid.uuid4, ...
0
votes
3answers
125 views
Flask: How to manage different environment databases?
I am working on an app which looks similar to
facebook/
__init__.py
feed/
__init__.py
business.py
views.py
models/
...
0
votes
3answers
127 views
Using DATEADD in sqlalchemy
How can I rewrite the following sql statement with sqlalchemy in python. I have been searching for 30 mins but still couldn't find any solutions.
DATEADD(NOW(), INTERVAL 1 DAY)
or
INSERT INTO ...
0
votes
1answer
27 views
What units is the pool_recycle flag in? [SQLAlchemy]
When connecting to a engine in SQLAlchemy, you can set a pool_recycle flag to prevent MySQL disconnecting automatically after 8 hours. Does anyone know what this pool_recycle flag's unit? Is it ...
1
vote
1answer
67 views
SQLAlchemy: How to save an object with the foreign key?
I've got these classes.
class User(object):
query = db_session.query_property()
def __init__(self, username, passhash, salt):
self.username = username
...
2
votes
1answer
90 views
How to do two-level many-to-many relationships?
I'm working in Flask with Flask-SQLAlchemy, and trying to setup a many-to-many-to-many relationship: clients can have multiple orders and orders can also have multiple clients (many to many); each ...
0
votes
1answer
47 views
SQLAlchemy two identically named primary keys that are also foreign
I'm using SQLAlcemy in a Flask app to migrate an old MySQL database to a new one whilst performing some cleaning and such en route. I don't control the schema on the target, and as such I'm bound ...
0
votes
1answer
99 views
sqlalchemy disposing the connection pool right after creating a new connection
I have a problem with sqlalchemy disposing the connection pool for some reason, I have no idea why.
This is the log I have:
2013-03-12 15:04:28 [19800] [DEBUG] Arbiter booted
2013-03-12 15:04:28 ...
1
vote
1answer
90 views
Using same name of tables with different binds in Flask
I have two tables sharing the same name but located in different databases:
class Lcn(db.Model):
__tablename__ = 'lcn'
class LcnRemote(db.Model):
__bind_key__ = 'remote'
__tablename__ = ...
0
votes
1answer
79 views
Compare A Python List To A SQLAlchemy Collection
How do I compare a Python list to a SQLAlchemy collection?
I get the following error message
InvalidRequestError: Can't compare a collection to an object or collection; use contains() to test for ...
0
votes
2answers
51 views
How to inherit the declarative in SQLAlchemy without setting the __tablename__?
Using flask-sqlalchemy, I want to create some class to inherit the declarative class and add the __bind_key__. So that I can create some tables and inherit these binded class.
from ...
2
votes
1answer
73 views
How Can I Build a ForeignKey to a Table Which Has Composite Primary Key?
I'm having a lot of trouble figuring out how to properly build my ForeignKey column for a table I'm defining. I've outlined my models here (and put a comment next to the problematic line in my ...
0
votes
2answers
155 views
SQLAlchemy Flask filter query to combine results from two models
I am trying to order a user's thanks(posts) by date_registered.
At the moment, there are two queries to get two lists, then manually combine and re-order. A user can be a giver of thank or a ...


