[Fixed]-Use django to expose python functions on the web

1👍

Typically, as stated by @DanielRoseman, you certainly want to:

  • Create a REST API to get data from another web site
  • Get data, typically in JSON or XML, that will contain all the required data (name and surname)
  • In the REST controller, Convert this data to the Model and save the Model to the database
  • Send an answer.

More information here: http://www.django-rest-framework.org/

Leave a comment