Tagged Questions
0
votes
0answers
10 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
24 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
35 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...' ...
2
votes
2answers
37 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
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
27 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
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 ...
0
votes
1answer
33 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
36 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
0answers
35 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
45 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
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 ...
0
votes
1answer
20 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
162 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
78 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
44 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
47 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 ...
1
vote
2answers
75 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
33 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
94 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
94 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
77 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
3answers
149 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
135 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
3answers
65 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
47 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
117 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
120 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
65 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
...
1
vote
1answer
82 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
2answers
145 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 ...
0
votes
1answer
105 views
Flask-SQLAlchemy - SQL operations
Am using Flask with Flask-SQLAlchemy, for the SQL operations, i can able to successfully insert a record into mysql database from the
Views.py
from models import *
user= adduser('test')
...
0
votes
1answer
285 views
Flask - How to get Session ID
Am doing a project with Flask, Gevent and web socket using flask development server environment. I used flask_login. Here
how can get i get the Unique Session ID for each connection?
I want to store ...
2
votes
1answer
88 views
Flask-SqlAlchemy Adjacency List Relationship backfref unexpected error
I am working on a small project where I am using Flask-SqlAlchemy to implement an adjacency list relationship. I have a model (table) which has an attribute for db.Relationship() which references the ...
0
votes
1answer
232 views
Flask-SQLAlchemy not creating tables using create_all()
I have a Flask app that is using Flask-SQLAlchemy. In my unit tests, I initialise the app and the DB, then call db.create_all() and for some reason it looks like it's not picking up any of my models ...
1
vote
0answers
71 views
Reset Password function in Flask-Security not working
I'm trying to use the default Forgot Password functionality in Flask-Security module with no customizations. On the Forgot Password view, I enter my email address, click Recover Password and ...
2
votes
1answer
53 views
Relating a class to its self
I have a class Revision, Revision has the following definition:
class Revision(db.Model):
id = db.Column(db.Unicode, primary_key=True)
text = db.Column(db.Unicode)
In addition, each ...
1
vote
1answer
173 views
Configuring Flask-SQLAlchemy to use multiple databases with Flask-Restless
I have a Flask app that uses Flask-SQLAlchemy and I'm trying to configure it to use multiple databases with the Flask-Restless package.
According to the docs ...
1
vote
1answer
129 views
Flask-Restless dumps Decimal value from Flask-Sqlalchemy
i have this model using Flask-SQLAlchemy:
class Menu(Document, db.Model):
id = db.Column(db.Integer, primary_key=True, autoincrement=True)
name = db.Column(db.String(80), unique=True, ...
0
votes
1answer
136 views
Select with count in Flask-SQLAlchemy
I'm still confused as to how SQLAlchemy works. As of now I have a query which looked like this
SELECT cast(a.product_id as bigint) id, cast(count(a.product_id) as bigint) itemsSold, ...
0
votes
1answer
68 views
Reducing repeated code in Flask and Flask-SQLAlchemy
I am using Flask-SQLAlchemy and I have a database with various tables and relations. I want the user to be able to create an entry in a table like (category) edit an entry in a table and view all ...
0
votes
1answer
111 views
Flask App returning “MySQL server has gone away” after 60 seconds of idle time
I'm using Flask-SQLAlchemy in my app and after 60 seconds of idle time, MySQL returns a "MySQL server has gone away" error.
Here's my traceback:
Traceback (most recent call last):
File ...
0
votes
2answers
110 views
Proper way to prevent SQLAlchemy from re-running queries on expired objects?
I'm having trouble wrapping my head around how to deal with expired sqlalchemy objects in a flask request. Let's say I do something like the following:
from models import Foo, Bar
...
1
vote
1answer
57 views
Is it possible to have a model with both a one-to many and a many-to-many relationship?
I have a system where I will have Products (classes) that can be taught by one or more Instructors. These Instructors can also create Products in which case they should be accessible via the Product ...
0
votes
1answer
43 views
“Table flask_db.user doesn't exist” error when doing db.session.commit()
i'm building my first app with Flask Python micro-framework and i have a problem with commiting my models with the database. When i test my User model on the command line, all works well. But when i ...
0
votes
1answer
68 views
Flask Database Issue
I am using this tutorial as a guideline. http://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-iv-database
I want to have Categories that can heave multiple Products. Similar to how he has ...
0
votes
2answers
178 views
Separate SQLAlchemy models by file in Flask [duplicate]
Many examples for Flask apps that I have seen have the models stored directly in the main app file (http://pythonhosted.org/Flask-SQLAlchemy/quickstart.html, ...

