Re: Noobie questions about Django and Databases

2013-05-08 Thread Nate Aune
> What I had planned to "learn by doing", is building a site that scrapes > the prices of baseball bats from about 20 different websites and displays > the best price when a user searches based on the model of the baseball / > softball / teeball bat. > Check out the

Re: Noobie questions about Django and Databases

2013-05-06 Thread Brian Williams
Thanks Shawn, I am plugging my way through the docs and djangobook. I figured that I probably just hadn't come to it yet. Sometimes ADD gets the best of me and I just can't help but ask a question when something is on my brain. I appreciate the help, off to read the links you sent. Brian

Re: Noobie questions about Django and Databases

2013-05-06 Thread Shawn Milochik
In that case, you'd just add a 'model number' field to your table. In the Django ORM, each Model instance relates to a table. So you aren't going to want to have more than one to write your code against. Just read through these two pages and everything should make sense: