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.
Here is a generic piece of code that I've taken from a posting on here which I've tried to expand upon to suit my own needs. The solution was never posted that I could find and I am receiving the same error as the initial posting (AttributeError: 'NoneType' object has no attribute 'append'.
I have a large parent table of pretty dirty data (lots of NULLS) that I could like to break out into sets into order to normalize and interpolate where possible and even hopefully fix in places. More specifically, I have flat file in sqlite, say raw_data. I could like to break this out into a set with a 1-to-1 relation to the parent raw_data. I would also like to break out a number of other many-to-1 sets and then have the data cascade to the child sets so that missing fields could be interpolated or fixed eg, Harvard NULL, NY.
I'm running python 2.7.2, sqla 0.7.4 on ubuntu 11.10, else windows 7.
Here's the file:
from sqlalchemy import create_engine, MetaData, ForeignKey
from sqlalchemy import Table, Column, Integer, UnicodeText, Date
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import sessionmaker, backref, relationship
from sqlalchemy.orm.collections import collection
import sqlite3
import csv
conn = sqlite3.connect('parent_child_test1_1.db')
conn.execute('pragma foreign_keys = on')
engine = create_engine('sqlite:///parent_child_test1_1.db', echo=True)
Base = declarative_base()
metadata = MetaData()
Session = sessionmaker(bind=engine)
session = Session()
class Parent(Base):
__tablename__ = 'parent'
parent_id = Column(Integer, primary_key=True, autoincrement=True)
child1_id = Column(Integer, ForeignKey('child1.child1_id'), onupdate="cascade")
child2_id = Column(Integer, ForeignKey('child2.child2_id'), onupdate="cascade")
child3_id = Column(Integer, ForeignKey('child3.child3_id'), onupdate="cascade")
child4_id = Column(Integer, ForeignKey('child4.child4_id'), onupdate="cascade")
child5_id = Column(Integer, ForeignKey('child5.child5_id'), onupdate="cascade")
# use a set
children1 = relationship('Child1', cascade='all', collection_class=set, \
backref=backref("parent", uselist=False))
children2 = relationship('Child2', cascade='all', collection_class=set, backref='parent')
children3 = relationship('Child3', cascade='all', collection_class=set, backref='parent')
children4 = relationship('Child4', cascade='all', collection_class=set, backref='parent')
children5 = relationship('Child5', cascade='all', collection_class=set, backref='parent')
class Child1(Base):
__tablename__ = 'child1'
__emulates__ = set
child1_id = Column(Integer, primary_key=True, autoincrement=True)
def __init__(self):
self.data = set()
def append(self, item):
self.data.add(item)
def remove(self, item):
self.data.remove(item)
def __iter__(self):
return iter(self.data)
class Child2(Base):
__tablename__ = 'child2'
__emulates__ = set
child2_id = Column(Integer, primary_key=True, autoincrement=True)
def __init__(self):
self.data = set()
def append(self, item):
self.data.add(item)
def remove(self, item):
self.data.remove(item)
def __iter__(self):
return iter(self.data)
class Child3(Base):
__tablename__ = 'child3'
__emulates__ = set
child3_id = Column(Integer, primary_key=True, autoincrement=True)
def __init__(self):
self.data = set()
def append(self, item):
self.data.add(item)
def remove(self, item):
self.data.remove(item)
def __iter__(self):
return iter(self.data)
class Child4(Base):
__tablename__ = 'child4'
__emulates__ = set
child4_id = Column(Integer, primary_key=True, autoincrement=True)
def __init__(self):
self.data = set()
def append(self, item):
self.data.add(item)
def remove(self, item):
self.data.remove(item)
def __iter__(self):
return iter(self.data)
class Child5(Base):
__tablename__ = 'child5'
__emulates__ = set
child5_id = Column(Integer, primary_key=True, autoincrement=True)
def __init__(self):
self.data = set()
def append(self, item):
self.data.add(item)
def remove(self, item):
self.data.remove(item)
def __iter__(self):
return iter(self.data)
parent = Parent()
child1 = Child1()
child2 = Child2()
child3 = Child3()
child4 = Child4()
child5 = Child5()
parent.child1 = child1
parent.child2 = child2
parent.child3 = child3
parent.child4 = child4
parent.child5 = child5
Base.metadata.drop_all(engine)
Base.metadata.create_all(engine)
session.add(parent)
session.add(child1)
session.add(child2)
session.add(child3)
session.add(child4)
session.add(child5)
session.commit()
I'm grateful for any direction that can be offered, and looking forward to learning.
Many thanks in advance, chris