Tagged Questions
1
vote
1answer
13 views
Can Alembic Autogenerate column alterations?
I was able to use
alembic --autogenerate for when adding / removing columns.
However, when I wanted to modify for example a "url" column from 200 characters to 2000 characters, it doesn't detect the ...
2
votes
1answer
45 views
Identical databases in Flask-SQLAlchemy
I've already asked a similar question, but I thought maybe I could rephrase it, or show what I've done further to shed some light onto what's going on here.
Currently I have 2 identical databases, ...
2
votes
0answers
32 views
Flask-SQLAlchemy different record count for .count() and .all()
In SQLAlchemy, ModelName.query.filter_by(field_name=value).count() returns correct record count, but ModelName.query.filter_by(field_name=value).all() only returns a single record. Doing a ...
1
vote
0answers
35 views
Inheritance in Flask / SqlAlchemy
I have a class structure that looks similar to the below. The table that sqlalchemy creates with db.create_all looks good. Jobs are added with the appropriate columns filled out (school_id for ...
0
votes
0answers
22 views
Using different binds in the same class in Flask-SQLAlchemy
I currently have multiple databases with identical Tables and Columns (but different data inside). So clearly I need to use binds to access all of them, but it's apparently not as simple as doing ...
0
votes
2answers
65 views
Python, Flask + SQLAlchemy - query not working
I've got the following Python code
app = Flask(__name__)
app.config['SQLALCHEMY_DATABASE_URI'] = 'postgresql+psycopg2://my_user_name:@localhost:5432/my_db'
db = SQLAlchemy(app)
...
0
votes
1answer
48 views
Error flask-sqlalchemy NameError: global name 'joinedload' is not defined
I'm trying to use a sqlalchemy loading strategy to speed up my queries. After reading this I realized that I was making the mistake of looping through the records in my template. The only problem is ...
1
vote
1answer
70 views
Populate a WTForms form object with a datetime.date
I'm cooking up a crud interface for an object representing a bill, as in the water bill, the electric bill, etc.
I'm using sqlalchemy to handle the data, wtforms to handle the forms, and flask to ...
0
votes
1answer
16 views
SQLAlchemy InvalidRequest on adding to relationship collection
I adding kind of 'migration' functionality to my Flask project. Initially I want to add user and roles which relates as many-to-many following way:
users_to_roles_association_table = ...
0
votes
1answer
31 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
0answers
41 views
Celery task hangs when chaining to a group
I'm trying to write a celery workflow that syncs a set of contacts from a remote system to the local database. I would like to split the results of the remote system api call into several batches, so ...
0
votes
2answers
52 views
Flask how to calculate tags count
I developing simple blog with tagging support. Actually I would like to add tags cloud functionality and I need to get count of each tag used in blog.
My Blog and Tag models looks like:
class ...
0
votes
1answer
66 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 ...
3
votes
1answer
47 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
0answers
33 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
62 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
0answers
82 views
SQLAlchemy error MySQL server has gone away
Error OperationalError: (OperationalError) (2006, 'MySQL server has gone away') i'm already received this error when i coded project on Flask, but i cant understand why i get this error.
I have code ...
0
votes
1answer
72 views
Flask + SQLAlchemy [ Determine Success of Commit ]
I have a view in flask that I want to use to display success when an object from a POST request is successfully committed.
In the controller, I have
us = User(data_that_is_not_valid)
...
0
votes
0answers
54 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
59 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 ...
2
votes
0answers
84 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
32 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
1answer
173 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 ...
1
vote
1answer
198 views
“unexpected EOF on client connection” with Flask and SQLAlchemy
I'm using the sql abstraction layer of sqlalchemy with Flask, following the pattern indicated here http://flask.pocoo.org/docs/patterns/sqlalchemy/
engine = create_engine('postgresql://' + DB_USER + ...
0
votes
1answer
56 views
Many to many helper table not being created in unit tests
I have a Flask app that uses SQLAlchemy and I'm having trouble getting my many to many relations working with my unit tests.
In my setUp method I create my app and initialise my database like this:
...
0
votes
0answers
68 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
67 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
1answer
69 views
sqlalchemy + flask , getting all post by day
I have a table, posts.
which consist of :
id = db.Column(db.Integer, primary_key=True)
title = db.Column(db.String(200))
content = db.Column(db.Text())
time = db.Column(db.DateTime)
this is ...
0
votes
1answer
46 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
126 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 / ...
0
votes
2answers
57 views
SQLalchemy + Flask: dynamic AND query
I have a m2m relationship for items and tags. I want to be able to create a dynamic AND query that would get every item that has every listed tag.
This is is a working example but I want to it to be ...
0
votes
2answers
52 views
How to fetch column values using SQLAlchemy?
I am using Flask+Python and to check if a username (and email) is already taken or not i am using this logic:
@app.route('/register', methods=['GET', 'POST'])
def register():
form = SignupForm()
...
2
votes
1answer
129 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
254 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 ...
2
votes
1answer
84 views
python: How can I test my database model using in-memory db?
I am developing a project in Flask and using SQLAlchemy as ORM
I have a User model as
class User(UserMixin, db.Model):
__tablename__ = 'users'
# noinspection PyShadowingBuiltins
uuid = ...
0
votes
1answer
68 views
Flask SQLAlchemy does not commit until App ends
I've started my session like so:
from flask.ext.sqlalchemy import SQLAlchemy
app.config['SQLALCHEMY_DATABASE_URI'] = 'mysql://mydatabase'
db = SQLAlchemy(app)
And I'm Adding entries to my database ...
0
votes
1answer
59 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
1answer
103 views
Flask : retrieve data from db and store it session
I have db.model like :
class UserProfile(db.Model):
__tablename__ = 'UserProfile'
nickname = db.Column(db.String(40), primary_key=True)
wm = db.Column(db.Boolean)
def __init__(self,name):
...
0
votes
1answer
86 views
Flask + WTForms: updating a row
I try to update an existing row in the database. When I submit the form I'm directed to /item/edit/ which triggers a 404. I have similar code in a different project and that works correctly. I can't ...
0
votes
3answers
165 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
2answers
82 views
Serving a page with multiple database's
What i have: multiple identical databses and a SQL-Alchemy setup.
What I need to achieve: a single "Flask" function able to query all the databses. All other functions need to access only one of the ...
0
votes
1answer
30 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 ...
0
votes
0answers
50 views
How to query in models_committed signal? Flask-Sqlalchemy
from flask.ext.sqlalchemy import models_committed
def on_models_committed(sender, changes):
print "Works good before next line"
SomeModel.query.all()
app = Flask(__name__)
...
1
vote
1answer
73 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
108 views
How to reduce number of connections using SQLAlchemy + postgreSQL?
I'm developing on heroku using their Postgres add-on with the Dev plan, which has a connection limit of 20. I'm new to python and this may be trivial, but I find it difficult to abstract the database ...
0
votes
1answer
165 views
Celery + SQLAlchemy : DatabaseError: (DatabaseError) SSL error: decryption failed or bad record mac
Error in the title triggers sometimes when using celery with more than one worker on a postgresql db with SSL turned on.
I'm in a flask + SQLAlchemy configuration
0
votes
0answers
82 views
flask-sqlalchemy give empty result from database view
I have Model:
from flask.ext.sqlalchemy import SQLAlchemy
db = SQLAlchemy()
class Graph(db.Model):
__tablename__ = 'graph_view'
group = Column(Unicode(250), primary_key=True)
port_id1 = ...
0
votes
0answers
107 views
SQLAlchemy join with filtering doesn't actually filter
The problem is in the header of topic. So here are the details.
I am using Flask-SQLAlchemy and PostgreSQL and my db schema is like this:
class Settings(db.Model):
id = db.Column(db.Integer, ...
0
votes
2answers
207 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
114 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')
...

