django script to insert database code example
Example: add row in db django
new_entry = YourModel(name='me', age='222', about='stackoverflow')
new_entry.save()
new_entry = YourModel(name='me', age='222', about='stackoverflow')
new_entry.save()