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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T05:08:43+00:00 2026-06-03T05:08:43+00:00

Greetings fellow enthusiasts! I am working on a project and I am utilizing python

  • 0

Greetings fellow enthusiasts! I am working on a project and I am utilizing python to interact with the twitter api.

Goal: Extract the location, text of tweet, created at, and user id from the raw data you see returned in the code from the “pprint.pprint(datares)” into a specified format in csv file.

Problem: How can I get the info I am returning into a csv file so that every row in the file would display as follows:

Row: tweet text, it’s location, created at, user id

The following is my code and shows what I am able to return so far.

import urllib2, json, pprint, codecs, unicodedata

u = urllib2.urlopen('http://search.twitter.com/search.json?geocode=29.762778,-95.383056,25.0mi&page=1&rpp=20')
datares = json.load(u)
##raw data returned
pprint.pprint(datares)

##open csv file
with codecs.open('Geotweets.csv',mode='w', encoding='utf-8',errors='replace') as cache:
##need to save tweets,date,area,id to file
    for tweet in datares['results']:
        print tweet['text']
        archive=tweet['text']
        unicodedata.normalize('NFKD', archive).encode('ascii','ignore')
        cache.write(archive)


for date in datares['results']:
    print date['created_at']
for area in datares['results']:
    print area['location']
for id in datares['results']:
    print id['from_user']
  • 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-03T05:08:45+00:00Added an answer on June 3, 2026 at 5:08 am

    If you want to make a CSV file, use the csv module!

    E.g:

    with codecs.open('Geotweets.csv',mode='w', encoding='utf-8',errors='replace') as cache:
        writer = csv.writer(cache)
        for tweet in datares['results']:
            writer.writerow([tweet['text'], tweet['area'], tweet['date'], tweet['id']])
    

    Or alternatively:

    with codecs.open('Geotweets.csv',mode='w', encoding='utf-8',errors='replace') as cache:
        writer = csv.DictWriter(cache, ["text", "area", "date", "id"])
        for tweet in datares['results']:
            writer.writerow(tweet)
    

    Obviously, you could also use writerows() to simplify this further:

    with codecs.open('Geotweets.csv',mode='w', encoding='utf-8',errors='replace') as cache:
        writer = csv.DictWriter(cache, ["text", "area", "date", "id"])
        writer.writerows(datares['results'])
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Greetings fellow Droidheads and the like. I am working on a Live Wallpaper project
Greetings, fellow SO people. I am working on a project that has me working
Greetings, I'm working on a game project that uses a 3D variant of hexagonal
Greetings fellow amazonians We have certain f4v files from webtvinteractive.com that are not working
Greetings fellow members, the situation in question is such: public abstract class BaseClass {
Greetings, fellow coders! I have this table that contains categories and subcategories (actually I
Greetings I've been working on a homework in which I must create a linked
Greetings everyone. Can any one has a working example for the CoreTelephony framework? I
Greetings fellow earthlings. I'm researching methods of caching data retrieved from various database tables
Greetings, I have a view based application project where I have created an NSObject

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.