Projects

A Simple Python for using Yahoo BOSS API

This is a simple module that lets you use the yahoo boss api from python. An example use case is shown below.

	import yahooboss
	
	api=BOSSAPI(appid, 'web')
	results = api.query('apple pie')
	for result in results :
		print "%s\t%s" % (result.title, result.url)
	

You can download the library here.