Thanks for the reply Gil i did this and was able to find this object. Python 3.6.8 (default, Aug 7 2019, 17:28:10) [GCC 4.8.5 20150623 (Red Hat 4.8.5-39)] on linux Type "help", "copyright", "credits" or "license" for more information. (InteractiveConsole) >>> from editLit.models import Circuitinfotable >>> obj = Circuitinfotable.objects.all() >>> print(len(obj)) 573 >>> obj = Obj.get(circuitid='STTK-100G-18040-01-WRBB') Traceback (most recent call last): File "<console>", line 1, in <module> NameError: name 'Obj' is not defined >>> obj = obj.get(circuitid='STTK-100G-18040-01-WRBB') >>> print(obj) STTK-100G-18040-01-WRBB
-- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/bbb629de-669c-4edf-a896-4402ee61187c%40googlegroups.com.