markolson / kickscraper

API library for Kickstarter.com
http://syntaxi.net/2013/03/24/let-s-explore-kickstarter-s-api/
MIT License
218 stars 52 forks source link

how to scrape data about the project creators? #45

Closed hannahwen closed 6 years ago

hannahwen commented 6 years ago

Hi everyone, I am doing academic research about project description and crowdfunding success. i have a dataset of 2000+ projects, and I would like to also get information about their creators (as mentioned in the WIKI), such as the biography of the creators and whether they have posted their facebook accounts, and if yes, how many friends they have. What can I do to scrape those data? Many thanks!!!

benrugg commented 6 years ago

I think you can get a little bit of info about project creators through Kickstarter's API... unfortunately it won't be nearly as much as you're looking for, I think. Here's the general idea of what you can do:

c = Kickscraper.client
project = c.search_projects('whatever').first # or project = c.find_project xxxxxxxxx (kickstarter id number)
puts project.creator.inspect