Sunday, 4th May, 2008

Syntax highlighter for python

Category: Python

Pygments is a python syntax highlighter library in python, which converts a raw code into colored highlighted syntax. I use this library for syntax highlighting for the posts on this blog. The library is very easy to use. Documentation and downloads are at Pygments home page.
The website also has Demo page which demonstrate the power of pygments library for highlighting syntax in several languages.
The following xml code is highlighted using pygments:
<addressbook>
<contact>
<name>Amaltas</name>
<phone>12345678</phone>
<address>123 abc street</address>

<email>amaltas@amaltas.org</email>
</contact>
<contact>
<name>Annie</name>
<phone>87654321</phone>
<address>890 xyz street</address>

<email></email>
</contact>
</addressbook>

Posted by Amaltas Bohra at 5:42 a.m.
0 comments

Monday, 21st April, 2008

Third party python libraries and frameworks

Category: Python

List of third party python libraries which I used in my python apps.
Imaging
IDE
Database
Templating
Web Development
Web Server
XML Processing
Misc.

Posted by Amaltas Bohra at 8:40 p.m.
1 comment

Tuesday, 22nd January, 2008

Using Yahoo BBAuth with Django

Category: Yahoo , Python , Django

Today I tried Yahoo's Browser based authentication service.

Yahoo BBAuth also offers a Single Sign-On (SSO) facility so that existing Yahoo! users can use your services without having to complete yet another registration process.

To enable Yahoo SSO in your application all you need to do is register your application, download this quick start package and integrate it with your application.

I tried integrating with Django and it was pretty easy.

Download Yahoo BBAuth python classes here

Extract ybrowserauth.py in your django project directory

Create a bbauth_config.py file into your root project directory

Add the following lines, replacing it with your appid and secret

# Put your Application ID and Secret here
APPID = ‘5KzQuKHIkxxxxxxxxxxxxxxxxxxSztLwiAF7
SECRET = ‘0e68e582xxxxxxxxxxxxxxxxxxxx0f25f4

In your views.py file add the following import statement.

from mysite import ybrowserauth, bbauth_config

Now assuming that I want to protect my photos view with YAHOO BBAuth I will add the following code in my photos view


def photos(self, ts, sig, token, userhas, appdata)# Instantiate the class
    cptr = ybrowserauth.YBrowserAuth(APPID, SECRET, ts, sig, token, userhash, appdata)
    if token == None: # If no token is found, create the authentication URL and display it
      req.content_type = "text/html"
      outstuff = cptr.getAuthURL('someappdata', 1)
      from django.http import HttpResponseRedirect  
      #this will redirect to YAHOO login page 
      return HttpResponseRedirect(outstuff)
    else:
      # If a token is found, it must be Yahoo!'s bbauth coming back as the
      # "success" URL. So, we validate the signature and do all the work
      request_uri = req.parsed_uri[6]+ '?' + req.parsed_uri[7]
      cptr.validate_sig(ts, sig, request_uri)
      userhash = cptr.userhash
      appdata = cptr.appdata
      cookie = cptr.cookie
      token = cptr.token
      wssid = cptr.wssid
      # Your photos view definition goes follows

Use example bbatestMAIL.py and bbatestPHOTOS.py file that comes with the sample code


A php example can be found at Dan's Blog


Posted by Amaltas Bohra at 11:06 a.m.
6 comments

-