Real-time audio processing with django-based app?

2020-08-24 Thread Rowan V
Hi all, I’m interested in building out an app with the following functionality. I would like to: 1) obtain audio data from a variety of users via a browser 2) undertake some analysis of the signal data in real time 3) Then create a composite stream of audio data based on transformations of the

Re: Model's Foreign Key Id Attribute not being updated

2017-03-23 Thread Rowan Seymour
etattr(obj, field.name) if rel_obj is not None: setattr(obj, field.get_attname(), rel_obj.id) Seems to do the trick -Rowan On Monday, 28 November 2016 16:54:41 UTC+2, Michael Viveros wrote: > > Thanks for the detailed responses, they helped clarify things a lot

Re: Imposing a negative constraint on related objects

2009-06-11 Thread Rowan Nairn
On Thu, Jun 11, 2009 at 9:15 AM, Jashugan <jashu...@gmail.com> wrote: > > On Jun 10, 2:48 pm, Rowan <rna...@gmail.com> wrote: > >> Here is an English description of what I want to achieve: >> "People who have received mails with tag T, excluding mails in t

Imposing a negative constraint on related objects

2009-06-10 Thread Rowan
started_by__ne=F('id')) \ .distinct() Rowan --~--~-~--~~~---~--~~ 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 unsubscri

Accessing related object id's in custom edit_inline_tabular template

2008-08-21 Thread Rowan Kerr
I'm trying to access the id's of related objects that are edited inline (tabular layout), but not having much luck. Have tried fcw.related_object.id, fcw.obj.id, fcw.obj.original.id, fcw.fields.id, and so on... Any hints on how to properly access that value would be much appreciated! Thanks.