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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T23:50:54+00:00 2026-06-04T23:50:54+00:00

OK, this is driving me nuts. I am trying to read from the Crunchbase

  • 0

OK, this is driving me nuts.

I am trying to read from the Crunchbase API using Python’s Urllib2 library. Relevant code:

api_url="http://api.crunchbase.com/v/1/financial-organization/venrock.js"
len(urllib2.urlopen(api_url).read())

The result is either 73493 or 69397. The actual length of the document is much longer. When I try this on a different computer, the length is either 44821 or 40725. I’ve tried changing the user-agent, using Urllib, increasing the time-out to a very large number, and reading small chunks at a time. Always the same result.

I assumed it was a server problem, but my browser reads the whole thing.

Python 2.7.2, OS X 10.6.8 for the ~40k lengths. Python 2.7.1 running as iPython for the ~70k lengths, OS X 10.7.3. Thoughts?

  • 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-04T23:50:55+00:00Added an answer on June 4, 2026 at 11:50 pm

    There is something kooky with that server. It might work if you, like your browser, request the file with gzip encoding. Here is some code that should do the trick:

    import urllib2, gzip
    
    api_url='http://api.crunchbase.com/v/1/financial-organization/venrock.js'
    req = urllib2.Request(api_url)
    req.add_header('Accept-encoding', 'gzip')
    resp = urllib2.urlopen(req)
    data = resp.read()
    
    >>> print len(data)
    26610
    

    The problem then is to decompress the data.

    from StringIO import StringIO
    
    if resp.info().get('Content-Encoding') == 'gzip':
        g = gzip.GzipFile(fileobj=StringIO(data))
        data = g.read()
    
    >>> print len(data)
    183159
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is driving me nuts. I am using some 3rd-party code in a Windows
Ok, this is driving me nuts... I'm trying to rewrite my urls like this:
This is driving me nuts. I've looked at all the relevant MSDN tutorials but
This is probably a silly error, but it's driving me nuts trying to fix
This is driving me nuts, I can't see the problem. Using jQuery (I'm stuck
This is driving me nuts. I am trying to set a background image to
OK, this is driving me nuts. I'm trying to screen-scrape the following bit of
OK, what am I doing wrong, this is driving me nuts. I am trying
This is driving me nuts so any advice from fellow users would be welcome.
This is driving me nuts. I am trying to setup a webiste on our

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.