[Answer]-Need to create a user application in python-Django framework where based on input data will insert or update in the database

1👍

check out the official example (models)

models in the django orm look like this

from django.db import models

class MyModel(models.Model):
    foo = models.IntegerField()  # a field in the model

You will need to read the official documentation or check out other django applications.

👤yamm

Leave a comment