Python
  Home arrow Python arrow Page 3 - Python on the Web
Dev Shed Forums  
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Smartphone Development  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Mobile Linux  
App Generation ROI  
IBM® developerWorks  
Forums Sitemap  
E-Commerce Hosting  
Linux Web Hosting  
Managed Hosting  
Small Business Hosting  
VPS Hosting  
Weekly Newsletter

 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid  
Request Media Kit
Contact Us  
Site Map  
Privacy Policy  
Support  
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
Google.com  
PYTHON

Python on the Web
By: Mark Lee Smith
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: starstarstarstarstar / 29
    2004-05-18


    Table of Contents:
  • Python on the Web
  • Creating a Warning
  • Cookies
  • Sending Email
  • A Last Example
  • Inside uploads()...

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      error-file:tidyout.log Del.ici.ous error-file:tidyout.log Digg
      error-file:tidyout.log Blink error-file:tidyout.log Simpy
      error-file:tidyout.log Google error-file:tidyout.log Spurl
      error-file:tidyout.log Y! MyWeb error-file:tidyout.log Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article

     
     
    ADVERTISEMENT


    Python on the Web - Cookies
    ( Page 3 of 6 )

    Next up we'll use Python's  'Cookie' module to do a little baking! (Ironically I suck at making real cookies.)

    >>> import Cookie
    >>> cookie = Cookie.SimpleCookie()
    >>> cookie['number1'] = 'some values'
    >>> cookie['number2'] = 'some values'
    >>> cookie['number3'] = 'some values'
    >>> cookie['number3']['expires'] = 3600
    >>> print cookie
    Set-Cookie: number1="some values";
    Set-Cookie: number2="some values";
    Set-Cookie: number3="some values"; expires=Fri, 30-Jan-2004 12:03:20 GMT;

    Ok, you have to agree, setting cookies couldn't be much simpler, and the 'Cookie' module wraps it up nicely. The difficulty comes when you want to retrieve your values... ok maybe I'm exaggerating a little here.

    #!/usr/bin/env python

    import os

    def monster():
     if 'HTTP_COOKIE' in os.environ:
      cookies = os.environ['HTTP_COOKIE']
      cookies = cookies.split('; ')
      handler = {}
      
      for cookie in cookies:
       cookie = cookie.split('=')
       handler[cookie[0]] = cookie[1]
       
      return handler
      
    if __name__ == '__main__':
     
     import Cookie
     
     cookie = Cookie.SimpleCookie()
     cookie['monster'] = 'cookievalue'
     print cookie
     
     print 'Content-Type: text/htmln'
     
     print 'Hit refresh to see the cookie!!!<br />'
     print 'Hewwo, im the cookie', monster()

    This is all about parsing the 'HTTP_COOKIE' header and inserting the cookie values into a dictionary.

    We start by importing the 'os' module into our program and defining the monster() function -- this checks if the 'cookies' string exists or not. If it does then we split it, leaving us with a list of 'key=value' strings. After that all we have left to do is loop over the list and split the values again, placing them into the dictionary.

    Ok finally let's do something a little useful with our cookies... and in keeping with our final example, we're going to create a counter function, which allows you to set limits on different processes. Observe and enjoy.

    #!/usr/bin/env python

    import Cookie, os

    def limits(count):
     if 'HTTP_COOKIE' in os.environ:
      cookies = os.environ['HTTP_COOKIE']
      cookies = cookies.split('; ')
      handler = {}
      for cookie in cookies:
       cookie = cookie.split('=')
       handler[cookie[0]] = cookie[1]

      if 'count' in handler:
       number = int(handler['count'])
       if number < count:
        cookie = Cookie.SimpleCookie()
        cookie['count'] = number + 1
        cookie['count']['expires'] = 86400
        print cookie
        return True
     else:
      print Cookie.SimpleCookie('count=1')
      return True

    if __name__ == '__main__':

    if limits(5):
     print 'user was under their limit, do this...'
    else:
     print 'user was over their limit, do nothing!'

    The start of this is exactly the same as in our monster() function except that if there are no cookies set, then we create one and set its value to one. If there are any cookies to unpack, then we check for 'count' in the handler dictionary and type-cast its value to a 'number' using int()... 'number' is then compared to the 'count' variable to check if the user is under or over their limit. Provided they're under their limit, then we update the cookie and set the expiry date to 24 hours before returning True; this is done so we can use if-else blocks to control the users access.



     
     
    >>> More Python Articles          >>> More By Mark Lee Smith
     

       

    PYTHON ARTICLES

    - Tuples and Other Python Object Types
    - The Dictionary Python Object Type
    - String and List Python Object Types
    - Introducing Python Object Types
    - Mobile Programming using PyS60: Advanced UI ...
    - Nested Functions in Python
    - Python Parameters, Functions and Arguments
    - Python Statements and Functions
    - Statements and Iterators in Python
    - Sequences and Sets in Python
    - Python Expressions and Operators
    - Dictionaries, Variables and Statements in Py...
    - Data Types in Python
    - The Python Language
    - SSH with Twisted





    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 1 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek