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 8166187
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T19:46:33+00:00 2026-06-06T19:46:33+00:00

I am very new to Python and I have a json news feed that

  • 0

I am very new to Python and I have a json news feed that I need to get a selected ‘title’ and image ‘src’.

I have managed to get to print all the ‘title’ and just the image ‘src’ that says “1024 landscape”.
How can I print, for example, just the second title? How do I address that particular one?
The feed is : http://www.stuff.co.nz/_json/ipad-big-picture

for story in data.get('stories', []):

    print 'Title:', story['title']

    for img in story.get('images', []):

        for var in img.get('variants', []):
            if var.get('layout') == "1024 Landscape":
                print '    img:', (var.get('src')).split('/')[-1], ' layout:', var.get('layout')

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-06-06T19:46:34+00:00Added an answer on June 6, 2026 at 7:46 pm

    First just get your stories object (list of dicts):

    stories = data.get('stories', [])
    

    Once you have this list you can just access by index:

    if len(stories) >= 2:
        print stories[1]['title']
    

    Or try first and catch the exception:

    i = 1
    try:
        print stories[i]['title']
    except IndexError:
        print "Story does not exist at index %d" % i
    

    So, when trying to get all 1024 Landscape images for a specific story, it might look like this:

    imgs = set()
    for img in stories[1].get('images', []):
        for variant in img.get('variants', []):
            if variant.get('layout') == '1024 Landscape':
                imgs.add(variant['src'])
    print imgs
    set([u'http://static.stuff.co.nz/1341147692/827/7202827.jpg'])
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am very new to Python. I need to have a 3 dimensional matrix,
I very new to Python, and fairly new to regex. (I have no Perl
I am very new to Python. I need to run diff.py(a python in built
I'll start by saying that I am very, very new to Python. I used
I'm very new to Python and multithreaded programming in general. Basically, I have a
I'm very new to python. two days. trying to get a plot working with
I am very new to python. I need to draw this shape for college
I am very new to Python and I have been trying to detect missing
I'm very new to python and I need to parse some dirty xml files
I have dates in a Python script that I need to work with that

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.