Project

TaoBaoApi

0.01
No commit activity in last 3 years
No release in over 3 years
get goods info from taobao
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
>= 0

Runtime

 Project Readme

TaoBaoApi

通过淘宝或天猫商品链接获取商品信息,商品信息包括标题、价格、图片。

环境说明

当前版本0.0.6 ruby 1.9.3 2.0.0未测试,nokogiri版本可能会有些问题

依赖库

nokogiri, faraday, faraday_middleware

安装方法

在 Gemfile 文件中加入以下代码:

gem "TaoBaoApi"

然后执行:

$ bundle

或者你可以通过 gem install 直接安装:

$ gem install TaoBaoApi

使用方法

require 'TaoBaoApi'

good = TaoBaoApi::Good.new 'http://item.taobao.com/item.htm?id=16434110195'

info  = good.get_info

p info #hash format,{:title => xxx, :price => xxx, :promo_price => xxx, :images => [], :url => url}

测试文件见test.rb

Update

  • 加入了获取促销价功能 20140513;
  • 改进价格获取失败的问题 20140302;