6
votes
1answer
1k views

Relations on composite keys using sqlalchemy

I have this simple model of Author - Books and can't find a way to make firstName and lastName a composite key and use it in relation. Any ideas? from sqlalchemy import create_engine, ForeignKey, ...
0
votes
1answer
868 views

sending object (recursive data structures) by XML-RPC in python

I need to send an object through XML-RPC in python. My object consist of composite data type to populate a tree structure: class Node(object): '''Composite data type ''' def __init__(self, pData, ...
1
vote
1answer
298 views

Sending composite data type with XML-RPC using cPickle

I am working on a distributed processing project. I need to send my composite data type to another peer, so i can use it in other peer to populate my TreeView structure. I have these two classes in ...
6
votes
1answer
1k views

Image compositing

I have an album title of some music band. I want to draw it with some mask which will round the corners of image. So, I've prepared such mask in gimp: I'm using white mask, but it's invisible at ...
1
vote
1answer
997 views

python multiprocessing proxy

I have a 2 processes: the first process is manager.py starts in backgroung: from multiprocessing.managers import SyncManager, BaseProxy from CompositeDict import * class ...
2
votes
1answer
448 views

Composite pattern for GTD app

This is a continuation of one of my previous questions Here are my classes. #Project class class Project: def __init__(self, name, children=[]): self.name = name ...
0
votes
2answers
501 views

python how to create different instances of the same class into an iteration

My problem is: I would like to add to a Composite class Leaf objects created at runtime inside a Composite routine like this: def update(self, tp, msg, stt): """It updates composite objects ...
1
vote
5answers
1k views

Python composite pattern exception handling & pylint

I'm implementig a Composite pattern in this way: 1) the "abstract" component is: class Component(object): """Basic Component Abstraction""" def __init__(self, *args, **kw): raise ...