How would you update a django app when there was an order in drupal ubercart. The order details and user information gets carried to django app.
We would need to know a lot more specifics about your setup in order to really answer this question, but it sounds like at a basic level all you need to do is use Drupal to modify another database (i.e., the one Django's using) and possibly redirect to the Django app?
If that's the case, then you'll need to write a small custom module that would:
Does that answer your question?