Tagged Questions
0
votes
0answers
12 views
Retrieve distinct backref instances from SQLAlchemy query
Given the following models:
class Foo(db.model):
id = db.Column(db.Integer, primary_key=True)
bar_id = db.Column(
"bar_id",
db.Integer(),
db.ForeignKey("bar.id"))
...
0
votes
0answers
18 views
django xml model specification?
I'm using django with many related projects. All those projects are using their own models. But unfortunately this is not DRY, because each model differ from each other very slightly, for example some ...
4
votes
1answer
22 views
SQLAlchemy : is there any good automated way to rename columns
I'm using SQLAlchemy ORM for a few days and i'm looking for a way to get tablename prefix in the results of Session.query().
For instance :
myId = 4
...
data = ...
1
vote
3answers
44 views
ORM for google cloud datastore
https://developers.google.com/datastore/docs/overview
It looks like datastore in GAE but without ORM (object relation model).
May I used the same ORM model as datastore on GAE for Cloud Datastore?
...
1
vote
1answer
29 views
Django one-to-one reverse relationship DoesNotExist
I've got an odd problem here, where my one-to-one relationship doesn't seem to be working in reverse. It's easiest to explain with code.
I have extended the default Django User to add a timezone, as ...
1
vote
1answer
29 views
Staying in the same Shell session with Python
I am building a Python script that will automatically create and arrange my new Django projects.
What I'm doing is;
create a virtualenv
activate the virtualenv with source my_app/bin/activate
pip ...
1
vote
1answer
19 views
Django: Give custom filtering methods to `QuerySet` objects of a specific model
I'm defining a model in Django. I want to define a few custom methods for its QuerySet objects. (i.e. I want to define custom ways to filter instances of that object, in a way peculiar only to that ...
0
votes
1answer
18 views
Automatically Build Database Table based on a Class with SQLAlchemy
I'm really new to SQLAlchemy, and I love it. Right now I'm doing a lot of things manually and I want to do things more 'pythonically' and dynamic.
So as an example, I have this short script that ...
0
votes
1answer
23 views
Filter django objects based number of foreign references
I have an object that represents a list of items. Each item has a foreign key to this list.
class ItemList(Model):
pass
class Item(Model):
list = ForeignKey(ItemList, related_name="items")
...
1
vote
1answer
39 views
Django mysql table name did not validate
I added classes to Django app model to create mysql tables. I have 'downloads' table, and 'downloads' column in 'songs' table.
When i want to sync db, Django returns me error:
CommandError: One or ...
0
votes
1answer
28 views
Enthought Traits with SQLAlchemy
The question is obvious: is it possible to use both ets Traits and SQLAlchemy for the same class? If no, what an alternative approach could you suggest?
2
votes
1answer
26 views
Average over a relationship in django
I have two entities, namely Project and Issue defined as followed:
class Project(models.Model):
class Issue(models.Model):
project = models.ForeignKey(Project, related_name='issues')
...
0
votes
0answers
30 views
Django accessing related fields prefetched by prefetch_related
So I have this loop:
for t in ts.prefetch_related('u__v_set'):
bla = t.x
...
Running this code in debugsqlshell I see three (constant amount in general) sql statements:
one getting all ...
1
vote
1answer
57 views
What is a good style around the use of getters/setters , properties while designing python classes
I came across this python code base where there is a custom ORM code that maps to MongoDb. I was asked to write new Entities following the existing pattern of code. I have only been writing python ...
0
votes
1answer
24 views
update tables with computed columns in sqlalchemy
I'm working in a legacy MSSQL database using SQLalchemy, for which I have a declarative mapping.
This database has several tables that have computed columns. I can read them fine, but (of course) ...
0
votes
1answer
30 views
What is the proper way to model this type of inheritance with SQLAlchemy?
I have a pair of PostgreSQL tables that look somewhat like this (simplified example):
CREATE TABLE people (
id SERIAL PRIMARY KEY,
created timestamp with time zone DEFAULT now() NOT NULL,
...
0
votes
1answer
59 views
Customized django manage.py use case
I am actually using django only to use its Object relational mapper(ORM) feature and, currently, have nothing to do with its web-framework. At present I have successfully been able to customize ...
2
votes
1answer
35 views
Storm ORM vs PyORMish for web apps
I am currently using PyORMish for powering Flask powered web apps, but since it's so new the support isn't quite there yet. I don't have any real issues other than the documentation.
On the surface ...
0
votes
0answers
56 views
Python - ORM - Object-relational mapping Error OpenErp
I never had any problems with my custom module, suddendly i got this error:
Client Traceback (most recent call last):
File "C:\Program Files\OpenERP ...
1
vote
2answers
51 views
Django: filter queryset by intersection result
let's say I have an Item model which is in a M2M relationship with Feature:
class Item(models.Model):
features = models.ManyToManyField(to = 'Feature')
now I'd like to filter the Item queryset ...
0
votes
1answer
39 views
Django standalone database script - Too Many Connections Error
I don't know the conventions to saving or querying django objects in a standalone script so there may be some blatant errors in my code below.
Pretty much, the script is a standalone .py file which ...
7
votes
1answer
395 views
How Pony (ORM) does its tricks?
Pony ORM does the nice trick of converting a generator expression into SQL. Example:
>>> select(p for p in Person if p.name.startswith('Paul')).order_by(Person.name)[:2]
SELECT "p"."id", ...
2
votes
2answers
44 views
How to check for a specific field change in a model?
I have my models.py :
class Hotel(models.Model):
name = models.CharField(max_length=20)
currency = models.ForeignKey(Currency)
class Currency(models.Mode):
code = ...
0
votes
1answer
57 views
SQLAlchemy: about self referential relation (error: no attribute '_sa_instance_state')
I want to implement some many to many and self referential mapping kind like the graph of keywords in a keyword net. For example, "apple" is a child of "juicy fruits", at the same time, "apple" is the ...
0
votes
1answer
34 views
Autoincrement not written to object
I'm using SQLAlchemy as my ORM layer to access my MySQL Database.
Here is the table, mapper and model, I'm talking about:
CREATE TABLE user (
uid INT(12) NOT NULL auto_increment,
email ...
1
vote
1answer
41 views
SQLAlchemy: pool_size and SQLite
The code
create_engine(sqlite:////infodb/timestamp.db', pool_size=10)
works fine in SQLAlchemy version 0.6.3. However, it does not work in version 0.7.1.
The error message I am getting is as ...
0
votes
0answers
25 views
sqlalchemy count entries get slow when the database gets larger
I'm now writing a website using tornado and sqlalchemy, and I have to use the count method in sqlalchemy to get the total amount of entries, I use it in this way:
count_query = ...
0
votes
2answers
46 views
Django ORM - No cascading deletion of a many-to-many relationship
I'm creating a Django application (using the out of the box ORM) to maintain pizza orders. I have the following models:
class Employee(models.Model):
name = models.CharField(max_length=50)
...
1
vote
1answer
45 views
prefetch limited number of related objects in django
I want to display list of Posts with 5 latest Comments for each of them. How do I do that with minimum number of db queries?
Post.objects.filter(...).prefetch_related('comment_set')
retrieves all ...
0
votes
0answers
55 views
Django multi server application
I am currently developing an application in Python using Django in which users can upload files to a remote server.
Here is the way I will proceed :
User upload the file to the remote server (which ...
1
vote
1answer
47 views
Django ORM query GROUP BY multiple columns combined by MAX
I am using Django with MySQL. I have a model similar to the following:
class MM(models.Model):
a = models.IntegerField()
b = models.IntegerField()
c = ...
0
votes
2answers
52 views
sqlalchemy: Why create a sessionmaker before assign it to a Session object?
Why I always need to do that in 2 steps in SqlAlchemy?
import sqlalchemy as sa
import sqlalchemy.orm as orm
engine = sa.create_engine(<dbPath>, echo=True)
Session = ...
0
votes
1answer
41 views
SQLAlchemy ORM: modify WHERE clause
If I've been given a Query object that I didn't construct, is there a way to directly modify its WHERE clause? I'm really hoping to be able remove some AND statements or replace the whole FROM clause ...
2
votes
3answers
82 views
Object schemas/models without ORM, DOM or forms
I've used MongoEngine a lot lately. Apart from the MongoDB integration, I like the idea of defining the structures of entities explicitly. Field definitions make code easier to understand. Also, using ...
0
votes
2answers
37 views
Idiomatic/fast Django ORM check for existence on mysql/postgres
If I want to check for the existence and if possible retrieve an object, which of the following methods is faster? More idiomatic? And why? If not either of the two examples I list, how else would one ...
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 ...
1
vote
2answers
72 views
How can I get a SQLAlchemy ORM object's previous state after a db update?
The issue is that I can't figure out how to use SQLAlchemy to notify me when an object goes into a new state.
I'm using SQLAlchemy ORM (Declarative) to update an object:
class ...
0
votes
1answer
33 views
How to manufacture Django ORM QueySet from existing data / get back to ORM queries from plain SQL?
My case:
In one place of my Django app I decided to use plain SQL, for optimization purpose - I was need a complex join, and Django ORM does not capable do such job. But use of plain SQL caused ...
3
votes
1answer
155 views
Are there any Python libraries/frameworks which generate AngularJS?
I find the stateless SOA architecture to be increasingly useful and relevant.
For example, it allows you to write once; deploy to:
Website (for viewing in web browsers)
Native mobile apps (using ...
0
votes
2answers
165 views
Store BLOB data with django and sqlite
First of all, I'm aware that there are many similar question like this, but the other solutions don't cover my specific case:
In my sqlite-database are existing binary data (SHA1 and similar hashes). ...
1
vote
1answer
79 views
Python+SQLAlchemy: Getting mapper class from InstrumentedList?
I want to dynamically get the SQLAlchemy mapper class that instances of InstrumentedList use.
I have a 1-M ParentClass-ChildClass (let's call the column myRelation), and the parentInstance.myRelation ...
1
vote
3answers
65 views
generate update query using django orm
I need to implement this query using django orm:
update table set field=field+1 where id=id
I don't whant to use this:
o = model.objects.get(id=id)
o.field+=1
o.save()
because it use select and ...
0
votes
2answers
42 views
sqlalchemy: How can I associate object of other table with primary key?
I have a Transaction table as
class Transaction(Base):
__tablename__ = 'transaction'
id = Column('id', Integer, primary_key=True)
name = Column('name', String)
amount = ...
0
votes
0answers
105 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, ...
1
vote
1answer
138 views
ORM Design using Pyramid and SQL Alchemy
I need some help to create my model for the ORM.
I've been trying to design a web application using Pyramid and SQLAlchemy as a personal learning experience as well as being a smaller component for a ...
1
vote
2answers
34 views
Sqlalchemy results post-processing
I'm fetching a dataset from my database with sqlalchemy in Python :
links = session.query(Link).order_by(Link.id.desc()).limit(20)
I'm then iterating over the links result in my view :
%for link ...
3
votes
0answers
58 views
Port Java/MVC/Hibernate webapp to Python [closed]
I'm not a Python developer, but I work with Python developers.
The scenario is the following: I have been asked to implement part of a system that integrates with a Python framework. I then agreed ...
0
votes
0answers
59 views
SQLAlchemy: Does every table in the database have to relate to a class in the application?
I have an application that I want to implement in Python 3.2 and SqlAlchemy 0.8. Am done with the ERD and it has about 30 tables as of now. Question is, now that I have 30 Postgresql tables, Does this ...
2
votes
1answer
90 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 ...
1
vote
2answers
70 views
Check if object with OneToOneField is new or already exists
The common pattern for checking if an object is new is testing for:
self.pk is not None
As described in In a django model custom save() method, how should you identify a new object?
But it's not ...






