i am following Need a minimal Django file upload example
with each upload, list is increasing, how i can delete object data i.e Document: Document object manually through python shell
>>> from myproject.myapp.models import Document
>>> Document.objects.all()
[<Document: Document object>, <Document: Document object>, <Document: Document object>, <Document: Document object>, <Document: Document object>,
>>> Document
<class 'myproject.myapp.models.Document'>