Tagged Questions
1
vote
0answers
26 views
Avoid retrieving object to delete in many to many rel SQLAlchemy
Is there a way to avoid retrieving an object to delete in many-to-many relationship?
assign = Table('manytomany', Base.metadata,
Column('pid', String(...), ForeignKey('parent.pid')),
...
1
vote
1answer
56 views
Inserting relationships into a table which connects 3 tables with many to many relationships with SQLALchemy - python
Below you can see how some tables of my database are related.
As you can see the table in the middle is connecting 3 tables with many-to-many relationships...
One gene can be expressed in more ...
1
vote
1answer
69 views
How to avoid adding duplicates in a many-to-many relationship table in SQLAlchemy - python?
I am dealing with a many-to-many relationship with sqlalchemy. My question is how to avoid adding duplicate pair values in a many-to-many relational table.
To make things clearer, I will use the ...
0
votes
1answer
51 views
sqlalchemy ---》type object 'role_user' has no attribute 'foreign_keys'
class User(Base):
"""
users table
"""
__tablename__ = 'users'
__table_args__ = {
'mysql_engine': 'InnoDB',
'mysql_charset': 'utf8'
}
id = ...
1
vote
1answer
68 views
Adding records in Many-to-Many relation cause duplicate error in sqlalchemy
I have 2 tables: Book, Author and secondary table books_authors and similar to this code:
book=Book()
for author in authors:
a = Author()
a.books.append(book)
session.merge(a) #1
...
0
votes
1answer
56 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:
...
0
votes
1answer
41 views
SQLAlchemy: Many-to-Many dynamic loading on both sides
Let's say I have the following:
association_table = Table('things_stuffs', Base.metadata,
autoload=True,
extend_existing=True)
class Thing(Base):
__tablename__ = 'things'
...
0
votes
0answers
31 views
Elixir model definition with two models derived from the same class
I define my models like this:
class Asset(Entity):
name = Field(String(255), default="")
class ResourceTag(Asset):
resources = ManyToMany('ResourceMetadata', tablename='tags_resources', ...
1
vote
1answer
95 views
SQLAlchemy how to filter by children in many to many
I was asking for a problem I had in SQLAlchemy and found the solution while writing. I post it anyway just in case it helps somebody :)
Let's say I have a many to many relationship that seems to work ...
1
vote
2answers
193 views
Many-to-many in sqlalchemy. Preventing SQLAlchemy from inserting into a table if a tag already exists
I have a few ORM mapped tables, which (pared down) look like this:
class Tag(Base):
__tablename__ = 'tags'
tag_name = Column(String, primary_key=True)
task2tag_assoc = Table('tasktags', ...
5
votes
1answer
440 views
SqlAlchemy and Flask, how to query many-to-many relationship
I need help creating SqlAlchemy query.
I'm doing a Flask project where I'm using SqlAlchemy. I have created 3 tables: Restaurant, Dish and restaurant_dish in my models.py file.
restaurant_dish = ...
3
votes
3answers
76 views
Selecting all users who subscribe to a particular user, but to whom that user does not subscribe
I have the following table definitions:
subscriptions = db.Table("subscriptions",
db.Column("subscriber_id", db.Integer, db.ForeignKey("users.id"),
primary_key=True),
...
0
votes
1answer
71 views
Sqlalchemy class is not iterable / converting relationship to a set
I'm trying to convert a one-to-many part of a many-to-many relationship to a python set(). See the following play example for code:
message_tos = Table('message_tos', Base.metadata, ...
2
votes
2answers
428 views
SQLAlchemy: retrieve all episodes from favorite_series of specific user
I have user who can have his favorite series and there are episodes which have series as foreign key and I am trying to retrieve all episodes from favorite series of user.
I am using Flask-SQLAlchemy.
...
0
votes
1answer
295 views
SQLAlchemy: Select count of related many-to-many elements
I have a many to many relationship between two tables/objects: Tag and Content. Tag.content is the relationship from a tag to all content which has this tag.
Now I'd like to find out the number of ...
3
votes
1answer
98 views
SQLAlchemy Many-to-Many Dynamic Set-like Relationship
I have a SQLAlchemy many-to-many relationship -- I want this relationship to be set-like.
That is, the association table should not have duplicate values. I have a uniqueness constraint on the MySQL ...
5
votes
2answers
507 views
Python's SQLAlchemy doesn't clean out the secondary (many-to-many) table?
I have a many-to-many relationship between Users and Tasks. I want the "secondary table" (meaning, the table that facilitates the many-to-many relation) to be cleaned out when I delete a Task or ...
1
vote
1answer
380 views
Flask relationship model multiple get or create if not exist
I just started with Flask and SQLAlchemy in flask.
So I have a many-to-many relationship using the example here http://docs.sqlalchemy.org/en/latest/orm/tutorial.html
If you scrolldown to the part ...
5
votes
1answer
344 views
How can I achieve a self-referencing many-to-many relationship on the SQLAlchemy ORM back referencing to the same attribute?
I'm trying to implement a self-referential many-to-many relationship using declarative on SQLAlchemy.
The relationship represents friendship between two users. Online I've found (both in the ...
3
votes
2answers
278 views
SQLAlchemy: if you are with me, I'm with you - self referential M2M relationships again
I'm trying to create a social-network like many-to-many mapping in SQLAlchemy. That is I have a Character class and a character_relations cross table to link from Character to Character. Until now ...
0
votes
1answer
193 views
SqlAlchemy many to many data modeling
Please help me model this in SQLAlchemy. A user can create a question. A question can have any number of choices (E.g. YES, NO, LATER, MAY BE, DONT KNOW, NEXT YEAR, NOT APPLICABLE). I have created a ...
4
votes
1answer
228 views
How to remove all items from many-to-many collection in SqlAlchemy?
when I need to remove an object from declarative ORM many-to-many relationship, I am supposed to do this:
blogpost.tags.remove(tag)
Well. What am I supposed to do if I need to purge all these ...
1
vote
0answers
129 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 = ...
0
votes
1answer
65 views
Strange ClassNotMappedError with sqlalchemy and Python
I'm building a rather simple model using sqlalchemy, using a many-to-many relationship defined by an association table and two classes that are to be associated using the declarative syntax.
When ...
0
votes
1answer
576 views
SQLAlchemy - How to map ManyToMany using autoloaded association tables
I am autoloading an MSSQL db. There are a few ManyToMany assoc tables. I'm not sure how to map each side. Here's a typical example of how they look in the db:
Table: tbUsersToGroups
PK: ...
4
votes
1answer
962 views
SQLAlchemy ManyToMany secondary table with additional fields
I have 3 tables: User, Community, community_members (for relationship many2many of users and community).
I create this tables using Flask-SQLAlchemy:
community_members = ...
3
votes
2answers
2k views
SQLAlchemy declarative many-to-many self-join via Association object
I have a table Users and a table Friends which maps users to other users as each user can have many friends. This relation is obviously symmetric: if user A is a friend of user B then user B is also a ...
1
vote
1answer
86 views
How to order elements when accesed by many to many relation in pythons SQLAlchemy?
Assuming two models in a many to many relationship:
parent_child = Table('parent_child', metadata,
Column('parent_id', Integer, ForeignKey('parent.id')),
...
1
vote
1answer
298 views
Assuming a many to many relationship (sqlalchemy, python), how to avoid adding duplicates?
The tabels authors and books are in a many to many relationship. A book can have many authors. An author has possibly written many books.
author_1 = Author('Dan')
session.add(author_1)
author_1.books ...
0
votes
1answer
170 views
Assuming a many to many relationship model in sqlalchemy with mysql, how to update data ignoring duplicates?
I am a little stuck with sqlalchemy trying to update some data.
I have a many to many and a one to many relationship. The first is a relationship between an author and the possible spellings of his ...
4
votes
2answers
1k views
SQLAlchemy: filter by membership in at least one many-to-many related table
Using SQLAlchemy 0.7.1 and a MySQL 5.1 database, I've got a many-to-many relationship set up as follows:
user_groups = Table('user_groups', Base.metadata,
Column('user_id', String(128), ...
1
vote
1answer
460 views
SQLAlchemy/Elixir - querying to check entity's membership in a many-to-many relationship list
I am trying to construct a sqlalchemy query to get the list of names of all professors who are assistants professors on MIT. Note that there can be multiple assistant professors associated with a ...
3
votes
2answers
303 views
sqlalchemy: keep column values from the association table in a many-to-many relationship
Suppose I have a project table and a task table. A project may have many tasks and a task may be assigned to multiple projects. I have an association table project_task, which has the mapping between ...
1
vote
0answers
78 views
Mapping an arbitrary select to a relation table in sqlachemy
I have a many to many relation table between tables Item and Detail, defined like this:
itemDetail = Table('ItemDetail',Base.metadata, \
Column('id', Integer, primary_key=True), \
...
1
vote
0answers
636 views
How to build many-to-many relations using SQLAlchemy: a good example
I have read the SQLAlchemy documentation and tutorial about building many-to-many relation but I could not figure out how to do it properly when the association table contains more than the 2 foreign ...
3
votes
1answer
896 views
Many-to-many declarative SQLAlchemy definition for users, groups, and roles
I'm new to SQLAlchemy, and was wondering what the best way to go about defining such tables and a relationship would be. I want to be able to access groups from a user by user.groups, users in a group ...
3
votes
2answers
1k views
filtering by association attributes with SqlAlchemy association_proxy
I have a many-to-many (developers & projects) relationship modeled using SA's association_proxy. The collections (developers on each project & projects for each developer) work fine, but I ...
0
votes
1answer
541 views
SqlSoup relate() for many-to-many relation throwing exception
I'm using the following code to use SqlSoup with an existing database.
import sqlalchemy
from sqlalchemy.ext.sqlsoup import SqlSoup
from sqlalchemy.orm import backref
engine = ...
6
votes
1answer
1k views
Many-to-many self-referential relationship in sqlalchemy
I'm trying to make a self-referential many-to-many relationship (it means that Line can have many parent lines and many child lines) in sqlalchemy like this:
Base = declarative_base()
class ...
0
votes
1answer
428 views
How to config Many-to-many with condition, in Sqlalchemy
I'm use sqlalchemy 0.6.4.
I have 2 classes: Question and Tag, they are many-to-many.
class Question(Base):
__tablename__ = "questions"
id = Column(Integer, primary_key=True)
deleted = ...
2
votes
1answer
219 views
how to save data in a many to many relationship using turbogears and sqlalchemy
hi i have a many to many relationship between a user and a group.and i will like to add a user with many groups in my database.how do i do that if my database is as follows
user_group_table = ...
5
votes
1answer
1k views
Setting up/Inserting into Many-to-Many Database with Python, SQLALchemy, Sqlite
I am learning Python, and as a first project am taking Twitter RSS feeds, parsing the data, and inserting the data into a sqlite database. I have been able to successfully parse each feed entry into a ...