Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7592323
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T20:52:41+00:00 2026-05-30T20:52:41+00:00

Disclaimer: I am new to python and Django, but have Drupal programming experience. I’m

  • 0

Disclaimer: I am new to python and Django, but have Drupal programming experience.

I’m following the tutorials here (http://www.djangobook.com/en/2.0/chapter05/), but I’m confused by

Publisher.objects.filter(name='Apress')
[<Publisher: Apress>]

I understand that the result is a Queryset Object, so how can I retrieve the address (or primary key) when the following approach fails?

p = Publisher.objects.filter(name='Apress')
a = p.address
'QuerySet' object has no attribute 'address'

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T20:52:42+00:00Added an answer on May 30, 2026 at 8:52 pm

    The attributes are only available on the model instances. A QuerySet is simplistically just as list of model instances, so you have to “unpack” it somehow to get at a particular instance and then the attribute on that.

    If you know that there’s only one of the thing you’re querying for, you should use get instead of filter:

    publisher = Publisher.objects.get(name='Apress')
    print publisher.address
    

    But, if multiple matches are returned, it will raise a MultipleObjectsReturned exception, and conversely, if no match is found an ObjectDoesNotExist exception is raised. As a result, you need to be careful when using get and make sure to wrap your code in appropriate try...except blocks.

    If you’re dealing with something where you expect more than one result, then you can either use some sort of loop structure to deal with each individual item in the QuerySet:

    for publisher in Publisher.objects.all():
        print publisher.address
    

    Or, directly pull out one item as you would with a traditional list:

    first_publisher = Publisher.objects.all()[0]
    print first_publisher.address
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Disclaimer: I am new to python and django but have Drupal programming experience. I'm
Disclaimer: I am new to python and django but have experience programming in Drupal.
Disclaimer: i am new to python but have drupal programming experience I am reading
diclaimer: I am new to python but have experience programming in Drupal I'm following
Disclaimer: I am new to python and django but have programmed in Drupal I
Disclaimer: I am new to python but have coded in Drupal where I used
Disclaimer: I'm fairly new to python! If I want all the lines of a
I have a WPF sorting/binding issue. (Disclaimer: I am very new to WPF and
Disclaimer: This is not actually a programming question, but I feel the audience on
Disclaimer: completely new to Python from a PHP background Ok I'm using Python on

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.