From the category archives:

api

TL;DR version: Here is an app to allow logging in via twitter, facebook, openid, yahoo, google, which should work transparently with Django authentication system. (@login_required, User and other infrastructure work as expected.) Demo and Code.Longer version follow:

We are releasing our new app. Django-Socialauth. This app makes it awfully easy, to allow users to login your site [...]

{ 135 comments }

Yahoo BOSS python api

by lakshman on June 14, 2009

Yahoo has a search api with generous limits, BOSS. There are a few python apis around it. But we wanted a lighter api, and one which has the same interface as out Bing Python api. So here is the updated bingapi.(Now with bossapi.py as well). Or svn it from here

Usage

Usage is mostly compatible with bingapi

In [...]

{ 5 comments }

Python Wrapper on Bing API

by lakshman on June 10, 2009

The newly launched search engine Bing has a simple restful API. We have created a thin Python wrapper over this API, which allows to query the Bing servers in a very pythonic way.

Installing this is as easy as easy_install bingapi.

[Or get it here or here ]

Using

from bingapi import bingapi bing = bingapi.Bing(<appid>) bing.do_web_search(‘Usware Technologies’)

The README from the [...]

{ 16 comments }