Well, most dyno's (http://en.wikipedia.org/wiki/Dynamometer) should allow you to download the output to a file, and using Tim's example for loading, you should be able to put the data into the django app pretty easy.
Here's what I would try, create a CSV or XML file for testing and loading into your django app so you can get a taste for what it looks like, you should then be able to build a URL/view to load it from the server, and viola you have your data, no? I would probably build the site in such a way that users could submit their numbers via another URL, and if you get that working, then the dyno could post it's data the same way, does that make sense? J On May 24, 6:43 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hmmmm... that is intriguing. Probably overkill for my immediate needs, > but I see how a simplified version might do it for me. And definitely > opens up some intriguing possibilities. > > John, how do you think you'd hook a dyno up to the app... that could > be VERY useful, given this little app's future. > > On May 24, 7:32 pm, John M <[EMAIL PROTECTED]> wrote: > > > Tim, > > > Brilliant idea. I'm a car nut and what you've built would allow a > > Dyno to be plugged into his django app and record all the data for a > > particular car, and then just have a view that pulled out the max hp > > or torque. > > > Very coolmultiple measurements associated with a given vehicle: > > > > class Engine(Model): > > > name = CharField(...) > > > > class HorsepowerMeasurements(Model): > > > engine = ForeignKey(Engine) > > > value = PositiveIntegerField(...) > > > rpm = PositiveIntegerField(...) > > > def __str__(self): > > > return "%i HP at %i RPM" % ( > > > self.value, self.rpm) > > > > class TorqueMeasurements(Model): > > > engine = ForeignKey(Engine) > > > value = PositiveIntegerField(...) > > > rpm = PositiveIntegerField(...) > > > def __str__(self): > > > return "%i lb.ft. at %i RPM" % ( > > > self.value, self.rpm) > > > > You should be able to use edit_inline to make this easier in the > > > admin interface. > > > > Thus, you could have a single engine with 12 HP at 10 RPM, 100 HP > > > at 20 RPM, and 75 HP at 30 RPM (okay, these are totally bogus > > > numbers pulled out of my head, dropping points on a quadratic curve) > > > > -tim --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---