0
votes
2answers
33 views

SQLAlchemy variable relationship

I'm unclear on how to configure SQLAlchemy for the following scenario: Several tables of varying nature. All tables need to reference a one-to-many notes table Would like to only have one notes ...
1
vote
5answers
66 views

Should Player inherit or own a Level?

I've been trying to learn OOP for the last few weeks as much as I can, and I've learned alot, but I'm not certain of this one, what should my class hierarchy look like? Imagine two classes, here's a ...
1
vote
1answer
105 views

SQLAlchemy ON DELETE SET NULL while using secondary table

I encountered a basic use case - I have two tables, Nodes and Networks, and they are interconnected using third table IPAddr as a secondary association table: class Node(Base, BasicValidator): ...
0
votes
1answer
150 views

Python Graph that shows relationship between three variables

I have a Python Function that has the arguments Slope and Distance and it returns Cost. Slope can be in the range 1 - 80. Distance can be in the range 1 - 20000. Cost can be any positive number. I ...
1
vote
2answers
159 views

SQLAlchemy Using relationship()

I am using SQLAlchemy here, trying to make a couple tables and link them and am having problems implementing this. class Team(Base): __tablename__ = "teams" id = Column(Integer, ...
0
votes
1answer
60 views

Sqlalchemy thread messaging system

I'm newbie to sqlalchemy. Now developing site with Flask. I want to orginize message system with threads. Something like facebook dialogs. I have following models and this code works: ...
3
votes
1answer
228 views

Can SQLAlchemy automatically create relationships from a database schema?

Starting from an existing (SQLite) database with foreign keys, can SQLAlchemy automatically build relationships? SQLAlchemy classes are automatically created via __table_args__ = {'autoload': True}. ...
0
votes
1answer
195 views

query related entities on sqlalchemy (many-to-many)

i have users and entities (many-to-many) , and using sqlalchemy, with this model: from sqlalchemy import Table, Column, Unicode, Integer, ForeignKey from sqlalchemy.orm import relationship from ...
1
vote
1answer
83 views

assigning a variable upon binding a relationship in sqlalchemy

I have the following two classes: class user(Base): .... id=Column(Integer, primary_key=True) address=relationship('Address',backref='user') class Address(Base): ... ...
1
vote
2answers
62 views

How can I join two queries on a common relationship in sqlalchemy?

Suppose I have two classes ChildA and ChildB which both have a relationship to Parent. Suppose also that I already have two queries defined, qa and qb, which query the respective child classes. I want ...
1
vote
1answer
131 views

Bidirectional many-to-many attribute_mapped_collection, sqlalchemy

I have 2 classes as a many to many relationship A and B, shortened to show the basic relationship here: class A(Base): bclss = relationship("B", backref = "aclss", ...
2
votes
1answer
187 views

Sqlalchemy: secondary relationship update

I have two tables, say A and B. Both have a primary key id. They have a many-to-many relationship, SEC. SEC = Table('sec', Base.metadata, Column('a_id', Integer, ForeignKey('A.id'), ...
0
votes
2answers
112 views

add an array of linked document _ids to couchdb documents in python

I want to add a links property to each couchdb document based on data in a csv file. the value of the links property is to be an array of dicts containing the couchdb _id of the linked document and ...
1
vote
3answers
61 views

author relation analysis with python

So this is a big one: I have a list with authors and coauthors of various publications. This list might look like this: [[['A','uni'],[['B','uni'],['C','uni'],['D','uni'],['E','uni']]], ...
0
votes
0answers
31 views

Resolving mismatches / traversing relationships in a denormalized table

Suppose two people categorize a bunch of books into genres. The two work independently, and use different genre names. As a result, of course, their classifications don't match. All this information ...
3
votes
1answer
638 views

Flask Sqlalchemy : relationships between different modules

I'm following the Flask-SQLAlchemy tutorial. I have Flask 0.9, sqlalchemy 0.7.8 and flask-sqlalchemy 0.16 on python 2.6. I'm trying to create a "one to many" relationship, like in their tutorial. ...
1
vote
0answers
35 views

Defining a set of relation fields for a generic view in Django

Well, i'm using a generic view to display my selected fields defining my method fields, it works, but what i'm trying to do it's as follows, in one of my custom fields i want to retrieve name value of ...
1
vote
1answer
40 views

Handling M2M relationships in Django

I have a User model that extends the built in Django User model: class CustomUser(User): objects = UserManager() tasks = models.ManyToManyField(Task) I created a User in the shell using: ...
0
votes
1answer
113 views

Foreign key constrains for Python data structures without using real databases

I'm looking for a way to manage a set of Python data structures which would nicely fit into a relational schema, but without the overhead of having a real database or parsing SQL. The amount of data ...
1
vote
1answer
245 views

SQLAlchemy import tables with relationships

I have problem with separating tables with relationships in different files. I want the tables below to be in three separate files and to import TableA in third party page, but I can not manage the ...
1
vote
1answer
789 views

SQLAlchemy: How to order query results (order_by) on a relationship's field?

Models from sqlalchemy.ext.declarative import declarative_base from sqlalchemy import Column, ForeignKey from sqlalchemy import Integer from sqlalchemy import Unicode from sqlalchemy import TIMESTAMP ...
1
vote
5answers
135 views

Python OOP - Magic Bullet - reference owner instance?

Is there no magic python way of accessing the instance of the class that has a reference to the current self inside it? ie: class A(object): def __init__(self): self.B = B() def ...
1
vote
2answers
101 views

Django: How to access a list of backward relationships in a view?

let's assume, I have a model called Chicken: class Chicken(models.Model): name = models.CharField(max_length=30) and I also have a model called Egg that has a ForeignKey to the Chicken-model: ...
0
votes
2answers
107 views

django: Retrieve object via backwards relationship in view.py, not template

Just starting out to program in python and I'm having the following issue. I have a template that shows details on a supplier, each supplier has employees and on the template page, I want to show the ...
0
votes
0answers
83 views

SQLA multiple many-2-one set-like child tables; cascade

Apologies in advance, but I'm new to most of this so I might not get my terms or concepts quite right. That said, I'm fairly certain that SQLA is the right tool so any input is greatly appreciated. ...
0
votes
2answers
91 views

Do I need multiple association tables for this relationship?

I'm trying to get my head around the best way to construct a relationship that maps many Constants to many Items. My initial relationship, an Item has a Constant, looked like this. class ...
1
vote
0answers
132 views

Are backrefs necessary when using association proxies for a many-to-many?

So using SqlAlchemy, I'm creating a fairly simple many-to-many relationship between a users model and a comments model. users.py class UsersModel(Base): __tablename__ = 'users' id = ...
2
votes
2answers
619 views

How to define two relationships to the same table in SQLAlchemy

I’ve looked all over the SQLAlchemy tutorial and other similar questions but I seem to be struggling to get this join to work: The scenario: I have a pages table represented by the Page model. Pages ...
1
vote
1answer
424 views

sqlalchemy: subqueryload with filter on the subquery

In sqlalchemy, is it possible to filter the result in the returned by subqueryloading of a relationship? Consider the following (please ignore any syntax/api errors) Relationship: User.address = ...
0
votes
1answer
188 views

web2py CURD.search() and permissions

I've this function for search @auth.requires_login() def find_template(): form, rows=crud.search(db.templates,query=db.templates.active==True) return dict(form=form, rows=rows) it works ...
0
votes
2answers
390 views

How to find sqlalchemy remote side object's class or class name without db queries?

Let's have a classes X and Y and relations between them x2y and y2x. From class_mapper(Class).iterate_properties iterator we can get all class's properties. So x2y and y2x are RelationshipProperty ...
1
vote
1answer
452 views

Modeling a database many to many relationship between three tables using sqlalchemy in python

Let's consider the following table models for sqlalchemy in python. class Worker(Base): id Column(Integer, primary = True) name Column(String, nullable = False) class Project(Base): id ...
0
votes
2answers
269 views

Python, inter-class relationships and object dependents

Edit Apologies for previous generality! I hereby try to be clearer. I am testing an image, so I am to write a number of methods which will run to analyse the image. Not all images tested will be ...
1
vote
1answer
92 views

SQL Alchemy: Relationship with grandson

I'm building a SQL Alchemy structure with three different levels of objects; for example, consider a simple database to store information about some blogs: there are some Blog object, some Post object ...
4
votes
1answer
663 views

SqlAlchemy: Check if one object is in any relationship (or_(object.relationship1.contains(otherObject), object.relationship2.contains(otherObject))

Let's say I have a class like this: class Foo(declarativeBase): bars1 = relationship(Bar.Bar, secondary=foos_to_bars1, collection_class=set()) bars2 = relationship(Bar.Bar, ...
3
votes
3answers
868 views

SQLAlchemy: add a relationship using id instead of object?

Is it possible to add to a SQLAlchemy relationship using ids rather than objects? For example, consider two declarative SQLAlchemy classes, Review and Artist, with a relationship between them: class ...
0
votes
1answer
147 views

SqlAlchemy: Get instances of certain type in a relationship that can contain objects of several types

I have an application with a "BaseVisibilizer" class that is base class for two other classes: class BaseVisibilizer(declarativeBase): __tablename__ = "base_visibilizers" ...
1
vote
1answer
92 views

Triggering another model's data to change (M2M) based on this model

Basically, I am trying to use data from one model to trigger a switch in another model. If my invoice object is linked with a file, I want the file to be "locked" (a boolean). I find that when I ...
2
votes
2answers
226 views

What type is on the other end of relation in sqlalchemy without creating objects?

How to obtain a name of the class that should be on the other end of the relation? It was declared when creating relationship. I guess that information should be somwhere in ...
7
votes
2answers
3k views

How do I access the properties of a many-to-many “through” table from a django template?

From the Django documentation... When you're only dealing with simple many-to-many relationships such as mixing and matching pizzas and toppings, a standard ManyToManyField is all you need. ...
3
votes
1answer
2k views

SQLAlchemy - relationship limited on more than just the foreign key

I have a wiki db layout with Page and Revisions. Each Revision has a page_id referencing the Page, a page relationship to the referenced page; each Page has a all_revisions relationship to all its ...