an extension for Flask that provides SQLAlchemy support.
1
vote
1answer
13 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
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 ...
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, ...
5
votes
3answers
1k views
Can SQLAlchemy be used with Google Cloud SQL?
I've looked over Google Cloud SQL's documentation and various searches, but I can't find out whether it is possible to use SQLAlchemy with Google Cloud SQL, and if so, what the connection URI should ...
0
votes
0answers
11 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
29 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
46 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
18 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...' ...
0
votes
3answers
108 views
How do you grab a headline from a blog/article like techmeme?
I'm a creating a type of news aggregator and I would like to create a program(Python) that correctly detects the headline and displays it. How would I go about doing this? Is this a machine learning ...
2
votes
2answers
44 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
53 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 = ...
3
votes
2answers
168 views
Cleanest way to make an ORM for neo4j + sql in python flask? One model over 2 databases
How can I create one model that talks to two databases in Flask, where one is, say, sqlite, and the other is specifically neo4j?
I'd like to have login and password stuff in a traditional db, and ...
0
votes
1answer
30 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
35 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
43 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 ...
8
votes
2answers
795 views
How do I make Flask SQLAlchemy reuse db connections?
I can't seem to get my Flask app to close or reuse DB connections. I'm using PostgreSQL 9.1.3 and
Flask==0.8
Flask-SQLAlchemy==0.16
psycopg2==2.4.5
As my test suite runs the number of open ...
13
votes
5answers
7k views
jsonify a SQLAlchemy result set in Flask
I'm trying to jsonify a SQLAlchemy result set in Flask/Python.
The Flask mailing list suggested the following method ...
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
33 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
65 views
Unexpected behavior of _and, & with filter
I'm getting some un-anticipated results from a query i'm running on my Postgres. Its worth noting i get the same results using sqlalchemy's _and function.
StackTrace:
In [49]: question_option = ...
0
votes
0answers
50 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 ...
3
votes
2answers
168 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
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, ...
0
votes
1answer
92 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 ...
4
votes
2answers
485 views
How to use Postgres' Hstore column with flask-sqlalchemy?
I am attempting to implement this code https://gist.github.com/1859653 that allows sqlalchemy to interact with an hstore column.
Its mentioned in that gist's comments the need to run the ...
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 = ...
1
vote
1answer
49 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 ...
4
votes
1answer
641 views
Python clean imports for models - SQL Alchemy
I have a flask app with the following directory structure:
myapp/
application.py
__init__.py
models/
__init__.py
user.py
The models use Flask-SQLAlchemy, and therefore, they need to have ...
0
votes
0answers
15 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
77 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
98 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
100 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 ...
4
votes
6answers
6k views
ImportError: No module named sqlalchemy
I'm unable to find a module in python ,though easy_install says its already installed.
Any idea how to resolve this isseue?
$ python -c "from flaskext.sqlalchemy import SQLAlchemy"
Traceback (most ...
0
votes
3answers
121 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
1answer
54 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 ...
1
vote
1answer
78 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, ...
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
3answers
165 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
59 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
140 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
119 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 ...
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
123 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
66 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
...





