Home : programming

Python


  • ADO - how to integrate Python with MS Access
  • Excel - how to integrate Python with MS Excel

    Unicode

    Probably the best way I've found for converting flakey text to ASCII on a mustn't-fail basis is using the following code:
    import unicodedata
    text = unicode(text, 'Latin-1')
    text = unicodedata.normalize('NFKD', text).encode('ascii','replace')
    

    External Links

  • GUI selector - it suggests a toolkit for you to use based on criteria you specify
  • piep - command line utility in the spirit of awk, sed, grep, tr, cut, etc.
  • pudb - advanced python debugger. Requires curses
  • Python Package Index - large and growing list of python packages at python.org. Like CPAN for Python
  • shovel - turn functions into tasks invokable from the command-line
  • simple - simple sample python code: celcius pyprint letters identd fingerd tabview fortune strfile baby
  • smptd - Sample SMTP Servers
  • tabular - data container and associated convenience routines
  • Wiki - for python

  • Author:  Mark Carter
    Updated: 28-Apr-2012