<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://srtsolutions.com/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><title type="html">Darrell Hawley&amp;#39;s Programming Thoughts</title><subtitle type="html" /><id>http://srtsolutions.com/blogs/darrellhawley/atom.aspx</id><link rel="alternate" type="text/html" href="http://srtsolutions.com/blogs/darrellhawley/default.aspx" /><link rel="self" type="application/atom+xml" href="http://srtsolutions.com/blogs/darrellhawley/atom.aspx" /><generator uri="http://communityserver.org" version="4.1.31106.3070">Community Server</generator><updated>2009-03-06T14:31:38Z</updated><entry><title>Note to Self 13 – Whole Lot of Django</title><link rel="alternate" type="text/html" href="/blogs/darrellhawley/archive/2010/02/26/note-to-self-13-whole-lot-of-django.aspx" /><id>/blogs/darrellhawley/archive/2010/02/26/note-to-self-13-whole-lot-of-django.aspx</id><published>2010-02-26T21:50:18Z</published><updated>2010-02-26T21:50:18Z</updated><content type="html">&lt;ul&gt;   &lt;li&gt;Testing &lt;a href="http://www.djangoproject.com/" target="_blank"&gt;Django&lt;/a&gt; can be somewhat challenging. Instead of simply running a &lt;a href="http://docs.python.org/library/unittest.html" target="_blank"&gt;unittest&lt;/a&gt; module, you need to run the manage.py script in your Django app passing it the “test” parameter. This sets up a test database for your model, runs your tests against that model and then destroys your database. In effect, it turns your unit tests into functional tests. &lt;/li&gt;    &lt;li&gt;Another item regarding testing that bothers me is the hoops you have to jump through in order to use a testing framework other than unittest. We want to use &lt;a href="http://pypi.python.org/pypi/nose" target="_blank"&gt;Nose&lt;/a&gt; for our project and getting it to run in the Django environment requires that we install a Django App (&lt;a href="http://pypi.python.org/pypi/django-nose" target="_blank"&gt;django-nose&lt;/a&gt;) in our Project, and then make a couple of changes in our project settings file. I admit it doesn’t sound too bad, but when you compare it to the ease of simply running “nosetest” the story is not nearly as compelling. &lt;/li&gt;    &lt;li&gt;Putting testing aside for the moment, the rest of Django has been a pretty good experience. Both the templating language and the models are simple to learn and start using right away. Even though Django favors configuration over convention, the amount of configuration necessary is relatively small and hasn’t been much of a burden. &lt;/li&gt;    &lt;li&gt;The main configuration hassle has been mapping urls. The process can be simple, but leaves the door open for something much more elaborate. This is one of those things where I wish they would looked closely at &lt;a href="http://rubyonrails.org/" target="_blank"&gt;Rails&lt;/a&gt; and adopt some of their practices: use conventions until it configurations become necessary. &lt;/li&gt;    &lt;li&gt;Going back to the manage.py file for a moment, I should say there are some cool things that you can do here. For those Rails developers out there, some of the functionality of Rake is contained in manage.py though certainly not all of it. Though the most common use of manage.py is syncing the database with your model (syncdb) and starting your development server (runserver), I find the shell command to be extremely useful for test driving models I’ve created. &lt;/li&gt;    &lt;li&gt;Though not specifically Django related, I feel Nosy is worth mentioning. I’ve become addicted to this script (go &lt;a href="http://jeffwinkler.net/2006/04/27/keeping-your-nose-green/" target="_blank"&gt;here&lt;/a&gt; for the original post) written by &lt;a href="http://jeffwinkler.net/" target="_blank"&gt;Jeff Winkler&lt;/a&gt; a few years ago. Like many others, I’ve taken the original script and modified it suit the needs of my project. In short, Nosy is a script that runs Nose anytime a &lt;a href="http://python.org/"&gt;python&lt;/a&gt; file in a given directory changes. It’s essentially like having a mini-ci server running on your desktop. I’ve found it very freeing to simply write code and be instantly notified if something breaks. No switching windows to run a test. &lt;/li&gt;    &lt;li&gt;As I mentioned before, the testing story for Django is not ideal. But this doesn’t mean you can’t improve the situation. I’ve made sure that the code going into our views.py file (which interestingly enough is really a controller) as close to pure framework code as I can. Most of my complexity is stored in a separate module that can be easily tested with Nose. To allow for even better testing, I make sure that all of the methods in the extra module accept a model as a parameter making mocking the models possible. &lt;/li&gt;    &lt;li&gt;In summation, Django absolutely makes creating websites &lt;em&gt;much&lt;/em&gt; easier&lt;em&gt;.&lt;/em&gt; Though testing is challenging, you can improve upon it if you put some though into it. Would I recommend Django? If you’re already comfortable in Python, than absolutely. If not, I’m not so sure. Rails is a compelling option considering it’s preference of convention over configuration. Keep in mind the required configurations in Django are very obvious whereas “stepping off the Rails” in RoR takes a bit knowledge of the framework. &lt;/li&gt; &lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://srtsolutions.com/aggbug.aspx?PostID=37718" width="1" height="1"&gt;</content><author><name>dhawley</name><uri>http://srtsolutions.com/members/dhawley/default.aspx</uri></author><category term="python" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/python/default.aspx" /><category term="Django" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/Django/default.aspx" /></entry><entry><title>Django at the Ann Arbor Software Development Study Group</title><link rel="alternate" type="text/html" href="/blogs/darrellhawley/archive/2010/01/24/django-at-the-ann-arbor-software-development-study-group.aspx" /><id>/blogs/darrellhawley/archive/2010/01/24/django-at-the-ann-arbor-software-development-study-group.aspx</id><published>2010-01-24T21:24:59Z</published><updated>2010-01-24T21:24:59Z</updated><content type="html">&lt;p&gt;I was supposed to lead a jam last December at the Ann Arbor &lt;a href="http://sites.google.com/site/softwaredevelopmentstudygroup/home"&gt;Software Development Study Group&lt;/a&gt;, but a client project postponed it. On Tuesday, February 2, we’ll try one more time. The topic is “&lt;em&gt;Zero to Django: Writing Web Apps with Python Using the Django Framework&lt;/em&gt;”. By the end of the session, you will be collecting form data and redisplaying it on a webpage.&lt;/p&gt;  &lt;p&gt;NOTE: This exercise is meant to get you collecting data quickly and I’ll be skipping a lot of explanations. Feel free to ask questions or research any areas that you may find particularly tricky.&lt;/p&gt;  &lt;p&gt;On with the jam!&lt;/p&gt;  &lt;p&gt;Pre-Requisites: &lt;/p&gt;  &lt;p&gt;Though there is only one requirement for this session - installing Django - you&amp;#39;ll want to get this done ahead of time. It&amp;#39;s not difficult, but there are a few steps and it will take enough time that it could keep you from completing all the exercises. To install Django, go to&lt;a href="http://docs.djangoproject.com/en/dev/topics/install/#topics-install"&gt; http://docs.djangoproject.com/en/dev/topics/install&lt;/a&gt; for a detailed description of what you need to do. Before following that link, here&amp;#39;s a couple of suggestions:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Be sure to install &lt;b&gt;Python 2.5&lt;/b&gt; (Python 2.6 will probably be fine). Django will not run with the 3.x series of Python. &lt;/li&gt;    &lt;li&gt;You can skip installing Apache and mod-wsgi. This session is only about how to use the framework which can be done completely within the development environment provided by Django. &lt;/li&gt;    &lt;li&gt;You can also skip the section on getting a database running. We&amp;#39;ll be using SQLite which is baked into Python 2.5 and later versions. &lt;/li&gt;    &lt;li&gt;Be sure to install an official release of Django. Under &amp;quot;Installing an&amp;#160; official release&amp;quot;, click on &amp;quot;download page&amp;quot; in line item 1. Use the version under &amp;quot;Option 1: Get the latest official version&amp;quot;. &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;The Exercise:&lt;/p&gt;  &lt;p&gt;Create a folder where all of your Django apps can you live. I&amp;#39;m using Windows and I&amp;#39;m putting all of my Django projects in the C:\django directory.&lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;From the command line, navigate to the directory you just created &lt;/li&gt;    &lt;li&gt;from the command line, run &amp;quot;python django-admin.py startproject people&amp;quot;. You may have to explicity give the path of the django-admin.py file which can be found in python25/Lib/site-packages/[django dir]. If you copied the file as suggested by the installation directions, just use that version of the file instead. Also, you may get a &amp;quot;permission denied&amp;quot; message. If that&amp;#39;s the case, check your permissions on the folder. &lt;/li&gt;    &lt;li&gt;If you successfully completed step 3, you should now have a &amp;quot;people&amp;quot; directory. On my machine, the path is c:\django\people. &lt;/li&gt;    &lt;li&gt;Navigate to the directory mentioned in Step 4 and run &amp;quot;python manage.py runserver&amp;quot; &lt;/li&gt;    &lt;li&gt;Open up a browser and navigate to &amp;quot;http://localhost:8000/people&amp;quot;. You should see a message congratulating you on &amp;quot;your first Django-powered Page&amp;quot; &lt;/li&gt; &lt;/ol&gt;  &lt;p&gt;Now that you’ve created a page, let’s configure our site so that we can do something useful.&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Django Projects contain one or more Apps (OK, they don’t &lt;em&gt;have to&lt;/em&gt; contain Apps, but if you want to connect to a database they do). To create an app, run &lt;em&gt;“python&lt;/em&gt;&lt;em&gt; manage.py startapp dataentry”&lt;/em&gt;. The “&lt;em&gt;manage.py&lt;/em&gt;” file can be found in the root of the people directory you created earlier. On my machine, the path is C:\django\people\manage.py. &lt;/li&gt;    &lt;li&gt;In the “&lt;em&gt;settings.py&lt;/em&gt;” file contained within the project root, configure the database. For this exercise we’ll use SQLite since it comes bundled with &lt;a href="http://python.org/"&gt;Python&lt;/a&gt; 2.5 and all later versions:       &lt;blockquote&gt;       &lt;p&gt;DATABASE_ENGINE = &amp;#39;sqlite3&amp;#39;          &lt;br /&gt;DATABASE_NAME = &amp;#39;peopledb&amp;#39;           &lt;br /&gt;DATABASE_USER = &amp;#39;&amp;#39;           &lt;br /&gt;DATABASE_PASSWORD = &amp;#39;&amp;#39;           &lt;br /&gt;DATABASE_HOST = &amp;#39;&amp;#39;           &lt;br /&gt;DATABASE_PORT = &amp;#39;&amp;#39;&lt;/p&gt;     &lt;/blockquote&gt;   &lt;/li&gt; &lt;/ul&gt;  &lt;ul&gt;   &lt;li&gt;In the settings file, you need to add your app to the INSTALLED_APPS section. Your INSTALLED_APPS section should look like the following (note the “people.dataentry” on the last line):      &lt;p&gt;INSTALLED_APPS = (        &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; &amp;#39;django.contrib.auth&amp;#39;,         &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; &amp;#39;django.contrib.contenttypes&amp;#39;,         &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; &amp;#39;django.contrib.sessions&amp;#39;,         &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; &amp;#39;django.contrib.admin&amp;#39;,&amp;#160; &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; people.dataentry&amp;#39;,         &lt;br /&gt;)&lt;/p&gt;   &lt;/li&gt;    &lt;li&gt;     &lt;p&gt;Again in the settings file, add “&lt;em&gt;&amp;quot;/templates&amp;quot;,&lt;/em&gt;” to the TEMPLATE_DIRS setting.         &lt;br /&gt;        &lt;br /&gt;Don’t worry about the extra lines. Those go beyond the scope of this session. If they really bother you, you can remove them. Just be aware that you’ll need add the extra comma (,) at the end so Python understands that this is a single item tuple.&lt;/p&gt;   &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;Now that the configuration is done, it’s time to setup your database. To do that, we’ll need to open up model.py file inside your application directory. On my machine, that’s “&lt;em&gt;c:\django\people\dataentry\model.py&lt;/em&gt;”. Your model should like the following:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;from django.db import models &lt;/p&gt;    &lt;p&gt;class Person(models.Model):      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; T_SHIRT_SIZE_CHOICES = (       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; (&amp;quot;WS&amp;quot;,&amp;quot;Women&amp;#39;s Small&amp;quot;),       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; (&amp;quot;WM&amp;quot;,&amp;quot;Women&amp;#39;s Medium&amp;quot;),       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; (&amp;quot;WL&amp;quot;,&amp;quot;Women&amp;#39;s Large&amp;quot;),       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; (&amp;quot;S&amp;quot;,&amp;quot;Small&amp;quot;),       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; (&amp;quot;M&amp;quot;,&amp;quot;Medium&amp;quot;),       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; (&amp;quot;L&amp;quot;,&amp;quot;Large&amp;quot;),       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; (&amp;quot;XL&amp;quot;,&amp;quot;X-Large&amp;quot;),       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; (&amp;quot;2XL&amp;quot;,&amp;quot;2X-Large&amp;quot;),       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; (&amp;quot;3XL&amp;quot;,&amp;quot;3X-Large&amp;quot;),       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; )       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; name = models.CharField(max_length=30)       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; t_shirt_size = models.CharField(max_length=10,       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; choices=T_SHIRT_SIZE_CHOICES)       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; special_dietary_concerns = models.BooleanField(       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; default=False)       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; special_dietary_concerns_comments = models.TextField(null=True,       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; blank=True) &lt;/p&gt;    &lt;p&gt;&amp;#160;&amp;#160;&amp;#160; def __unicode__(self):      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; return &amp;quot;&amp;lt;Person %s %s %s&amp;gt;&amp;quot; % (       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; self.name,       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; self.t_shirt_size,       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; self.special_dietary_concerns)&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;Now that your model is in place, let’s make sure that it’s reflected in the database.&lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;From the command line in the directory where the model.py file lives (“&lt;em&gt;c:\django\people\dataentry\model.py&lt;/em&gt;” on my machine), run “&lt;em&gt;python manage.py syncdb&lt;/em&gt;”. A series of tables will be created. &lt;/li&gt;    &lt;li&gt;You will be prompted to create a superuser. Type “&lt;em&gt;yes&lt;/em&gt;” and continue through the prompts. &lt;/li&gt; &lt;/ol&gt;  &lt;p&gt;That’s it! The Person class is now in the database. But how do you use it.? To test it out, run “&lt;em&gt;python manage.py shell&lt;/em&gt;” from the command line. You’ll be placed into Python’s Interactive Console. Now run the following commands&lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;from dataentry.models import Person &lt;/li&gt;    &lt;li&gt;p = Person() &lt;/li&gt;    &lt;li&gt;p.name = “Me” &lt;/li&gt;    &lt;li&gt;p.t_shirt_size = “L” &lt;/li&gt;    &lt;li&gt;p.save() &lt;/li&gt;    &lt;li&gt;Person.objects.get(id=1) &lt;/li&gt; &lt;/ol&gt;  &lt;p&gt;That last command should have printed “&amp;lt;Person Me L False&amp;gt;” in the console. Assuming it did, how do we get this form on a webpage? Before we do that, let’s make a webpage first.&lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;Create a new folder called “templates” in the “&lt;em&gt;c:\django\people\dataentry&lt;/em&gt;” directory. &lt;/li&gt;    &lt;li&gt;In the “&lt;em&gt;c:\django\people\dataentry&lt;/em&gt;\templates” directory, create a new file called “template.html” &lt;/li&gt;    &lt;li&gt;In the template.html file, paste the following snippet “&amp;lt;h1&amp;gt;{{ hello }}&amp;lt;/h1&amp;gt;” . Save the file. &lt;/li&gt; &lt;/ol&gt;  &lt;p&gt;You’ve just created a very basic template. To use it, make sure that your views.py file looks like the following:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;from django.shortcuts import render_to_response &lt;/p&gt;    &lt;p&gt;def hello(request):      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; hello = &amp;quot;Hello, World&amp;quot;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; return render_to_response(&amp;quot;template.html&amp;quot;, locals())&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;Open “c:\django\people\urls.py” and make sure the following code is in it:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;from django.conf.urls.defaults import *      &lt;br /&gt;from people.dataentry import views &lt;/p&gt;    &lt;p&gt;urlpatterns = patterns(&amp;#39;&amp;#39;,      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; (r&amp;#39;^hello/$&amp;#39;, views.hello)       &lt;br /&gt;)&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;All the pieces should be in place for you to actually view your webpage. From the command line, run “python manage.py runserver”. Open your favorite web browser and navigate to http://localhost:8000/hello. You should be rewarded with “Hello, World” in a very large font. That’s all well and good, but what about that model we created? Let’s put it to good use right now. Let’s create a list.html in our template directory that looks something like the following:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&amp;lt;html&amp;gt;      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;head&amp;gt;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;lt;title&amp;gt;{{ title }}&amp;lt;/title&amp;gt;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;/head&amp;gt;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;body&amp;gt;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;lt;table&amp;gt;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;lt;tr&amp;gt;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;lt;th&amp;gt;Name&amp;lt;/th&amp;gt;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;lt;th&amp;gt;T Shirt Size&amp;lt;/th&amp;gt;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;lt;th&amp;gt;Special Diet&amp;lt;/th&amp;gt;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;lt;th&amp;gt;Special Diet Comments&amp;lt;/th&amp;gt;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;lt;/tr&amp;gt;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; {%&amp;#160; for person in people %}       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;lt;tr&amp;gt;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;lt;td&amp;gt;{{ person.name }}&amp;lt;/td&amp;gt;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;lt;td&amp;gt;{{ person.t_shirt_size }}&amp;lt;/td&amp;gt;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;lt;td&amp;gt;{{ person.special_dietary_concerns }}&amp;lt;/td&amp;gt;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;lt;td&amp;gt;{{ person.special_dietary_concerns_comments }}&amp;lt;/td&amp;gt;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;lt;/tr&amp;gt;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; {% endfor %}       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;/body&amp;gt;       &lt;br /&gt;&amp;lt;/html&amp;gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;Now let’s create a new method in our view so that our views.py file looks like the following:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;from django.shortcuts import render_to_response      &lt;br /&gt;from people.dataentry.models import Person &lt;/p&gt;    &lt;p&gt;def hello(request):      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; hello = &amp;quot;Hello, World&amp;quot;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; return render_to_response(&amp;quot;template.html&amp;quot;, locals()) &lt;/p&gt;    &lt;p&gt;def list_people(request):      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; title = &amp;quot;List of People&amp;quot;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; people = Person.objects.all()       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; return render_to_response(&amp;quot;list.html&amp;quot;, locals())&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;Switch to the urls.py file and wire a url to our new method. Our updated urls.py file should look like the following:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;from django.conf.urls.defaults import *      &lt;br /&gt;from people.dataentry import views &lt;/p&gt;    &lt;p&gt;urlpatterns = patterns(&amp;#39;&amp;#39;,      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; (r&amp;#39;^hello/$&amp;#39;, views.hello),       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; (r&amp;#39;^list/$&amp;#39;, views.list_people),       &lt;br /&gt;)&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;From your web browser, navigate to http://localhost:8000/list. You should see the person you entered in the Interactive Console. Cool! By now you should see a pattern on how to create a new page in Django: create a template, create a new method in the view and then edit the urls.py file. Let’s add a bit more complexity by creating a form. Create a new forms.py file in the “C:\django\people\dataentry” directory. Put the following code block in that new file:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;from django import forms      &lt;br /&gt;from models import Person &lt;/p&gt;    &lt;p&gt;class PersonForm(forms.ModelForm):      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; class Meta(object):       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; model = Person&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;Create a new template in the template folder called “form.html” and put the following html inside it:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&amp;lt;html&amp;gt;      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;head&amp;gt;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;lt;title&amp;gt;Adding a Person&amp;lt;/title&amp;gt;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;/head&amp;gt;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;body&amp;gt;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;lt;form method=&amp;quot;post&amp;quot;&amp;gt;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;lt;table&amp;gt;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; {{ form.as_table }}       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;lt;/table&amp;gt;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;lt;input type=&amp;#39;submit&amp;#39;&amp;gt;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;lt;/form&amp;gt;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; &amp;lt;/body&amp;gt;       &lt;br /&gt;&amp;lt;/html&amp;gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;Switch over to your view.py file and modify it so that it looks like the following:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;from django.shortcuts import render_to_response, HttpResponseRedirect      &lt;br /&gt;from people.dataentry.models import Person       &lt;br /&gt;from people.dataentry.forms import PersonForm &lt;/p&gt;    &lt;p&gt;def hello(request):      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; hello = &amp;quot;Hello, World&amp;quot;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; return render_to_response(&amp;quot;template.html&amp;quot;, locals()) &lt;/p&gt;    &lt;p&gt;def list_people(request):      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; title = &amp;quot;List of People&amp;quot;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; people = Person.objects.all()       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; return render_to_response(&amp;quot;list.html&amp;quot;, locals()) &lt;/p&gt;    &lt;p&gt;def add_person(request):      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; title = &amp;quot;Add Person&amp;quot;       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; if &amp;#39;name&amp;#39; in request.POST:       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; form = PersonForm(request.POST)       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; if form.errors:       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; errors = form.errors       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; else:       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; form.save()       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; return HttpResponseRedirect(&amp;quot;../list&amp;quot;)       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; else:       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; form = PersonForm()       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; return render_to_response(&amp;quot;form.html&amp;quot;, locals())&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;Now all you have to do is wire up the url in the urls.py file. Now when you successfully add a new person using the form you will be redirected back to the list of people where you will see your entry at the bottom of the list.&amp;#160; &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://srtsolutions.com/aggbug.aspx?PostID=35444" width="1" height="1"&gt;</content><author><name>dhawley</name><uri>http://srtsolutions.com/members/dhawley/default.aspx</uri></author><category term="python" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/python/default.aspx" /><category term="Django" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/Django/default.aspx" /></entry><entry><title>IterHelper Released</title><link rel="alternate" type="text/html" href="/blogs/darrellhawley/archive/2009/12/29/iterhelper-released.aspx" /><id>/blogs/darrellhawley/archive/2009/12/29/iterhelper-released.aspx</id><published>2009-12-29T19:44:10Z</published><updated>2009-12-29T19:44:10Z</updated><content type="html">&lt;p&gt;I’ve mentioned &lt;a href="https://launchpad.net/iterhelper"&gt;IterHelper&lt;/a&gt; in my last few posts and I’m glad to say that I finally released a version of it that I feel is solid. I’ve run my unit tests on &lt;a href="http://python.org/"&gt;Python&lt;/a&gt; versions 2.5 and 2.6 and also on &lt;a href="http://www.codeplex.com/IronPython"&gt;IronPython&lt;/a&gt; 2.0 and 2.6.&lt;/p&gt;  &lt;p&gt;It doesn’t do anything earth-shattering at this point, but it does have some functions I find particularly useful such as a couple of filter methods and a number of “skip” and “take” methods. For a complete rundown of what it does, just run “help(IterHelper)”&lt;/p&gt;  &lt;p&gt;I’ve used &lt;a href="https://launchpad.net/"&gt;LaunchPad&lt;/a&gt; to manage my project and the experience has been good thus far. If you want to download it, you’ll need to do so from the trunk. I’m eventually moving to Python eggs, but until I work out the particulars, you’ll have to do include it in your project manually.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://srtsolutions.com/aggbug.aspx?PostID=32955" width="1" height="1"&gt;</content><author><name>dhawley</name><uri>http://srtsolutions.com/members/dhawley/default.aspx</uri></author><category term="python" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/python/default.aspx" /><category term="IronPython" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/IronPython/default.aspx" /><category term="IterHelper" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/IterHelper/default.aspx" /></entry><entry><title>Euler Problem 1 Revisited</title><link rel="alternate" type="text/html" href="/blogs/darrellhawley/archive/2009/11/29/euler-problem-1-revisited.aspx" /><id>/blogs/darrellhawley/archive/2009/11/29/euler-problem-1-revisited.aspx</id><published>2009-11-30T01:21:50Z</published><updated>2009-11-30T01:21:50Z</updated><content type="html">&lt;p&gt;&lt;/p&gt;  &lt;p&gt;The other day at the &lt;a href="http://sites.google.com/site/softwaredevelopmentstudygroup/home"&gt;Software Development Study Group&lt;/a&gt; in Ann Arbor, &lt;a href="http://srtsolutions.com/blogs/chrismarinos/"&gt;Chris Marinos&lt;/a&gt; was demonstrating &lt;a href="http://research.microsoft.com/en-us/um/cambridge/projects/fsharp/"&gt;F#&lt;/a&gt;, a functional programming language targeting the .NET framework. Of course, this got me thinking about programming styles in Python. So what better way to compare and contrast programming styles than with &lt;a href="http://projecteuler.net/"&gt;Euler problems&lt;/a&gt;? As you probably &lt;em&gt;don’t&lt;/em&gt; recall, the first Euler problem is:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23.&lt;/p&gt;    &lt;p&gt;Find the sum of all the multiples of 3 or 5 below 1000.&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;The traditional approach to this might look something like the following:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;def traditional_approach():      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; total = 0       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; for i in range(1,1000):       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; if i % 5 == 0 or i % 3 == 0:       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; total += i       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; return total&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;It’s not a bad approach, but there are more concise approaches. Here is my original solution using a list comprehension:&lt;/p&gt;  &lt;blockquote&gt;isValid = lambda x: x % 5 == 0 or x % 3 == 0    &lt;br /&gt;    &lt;p&gt;def with_list_comprehension():      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; filteredValues = [x for x in range(1,1000) if isValid(x)]       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; return sum(filteredValues)&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;I like list comprehensions, but this feature &lt;em&gt;does&lt;/em&gt; introduce a lot of noise characters. If you use list comprehensions, you probably like this solution, otherwise you’re looking for something else. The next approach uses the itertools module (and the &lt;em&gt;isValid&lt;/em&gt; lambda from the previous example).&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;def with_itertools():      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; filteredValues = itertools.ifilter(isValid, range(1,1000))       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; return sum(filteredValues)&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;This approach removes a couple of noise characters and is structured in a way familiar to most developers. My last solution uses a module called &lt;a href="https://launchpad.net/iterhelper"&gt;IterHelper&lt;/a&gt; that I proposed in a &lt;a href="http://www.darrellhawley.com/2009/09/does-ironpython-need-linq.html"&gt;previous post&lt;/a&gt;. As I mentioned in that post, &lt;a href="https://launchpad.net/iterhelper"&gt;IterHelper&lt;/a&gt; sits on top of the itertools module and implements some of the recipes from the &lt;a href="http://docs.python.org/library/itertools.html"&gt;official itertools documentation&lt;/a&gt;. It’s largely inspired by my desire to use &lt;a href="http://msdn.microsoft.com/en-us/netframework/aa904594.aspx"&gt;LINQ&lt;/a&gt; from both &lt;a href="http://python.org/"&gt;Python&lt;/a&gt; and &lt;a href="http://www.codeplex.com/IronPython"&gt;IronPython&lt;/a&gt;. Here’s my solution to Euler Problem 1 using &lt;a href="https://launchpad.net/iterhelper"&gt;IterHelper&lt;/a&gt;:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;def with_iterhelper():      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; return IterHelper(range(1,1000))\       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; .where(isValid)\       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; .sum()&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;Thanks to the Python continuation character, a backslash, I can put discreet units of functionality on their own line, making it easier for me to consume.&lt;/p&gt;  &lt;p&gt;If you decide to download and try out &lt;a href="https://launchpad.net/iterhelper"&gt;IterHelper&lt;/a&gt;, be aware that I’m not even considering it alpha yet. It’s still very much in the R &amp;amp; D phase and I’m planning on changing some of the method names.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://srtsolutions.com/aggbug.aspx?PostID=28925" width="1" height="1"&gt;</content><author><name>dhawley</name><uri>http://srtsolutions.com/members/dhawley/default.aspx</uri></author><category term="euler" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/euler/default.aspx" /><category term="python" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/python/default.aspx" /><category term="IronPython" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/IronPython/default.aspx" /><category term="IterHelper" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/IterHelper/default.aspx" /></entry><entry><title>Note to Self 12 – Lessons Learned from Our Latest Project</title><link rel="alternate" type="text/html" href="/blogs/darrellhawley/archive/2009/10/28/note-to-self-12-lessons-learned-from-a-our-latest-project.aspx" /><id>/blogs/darrellhawley/archive/2009/10/28/note-to-self-12-lessons-learned-from-a-our-latest-project.aspx</id><published>2009-10-28T21:15:54Z</published><updated>2009-10-28T21:15:54Z</updated><content type="html">&lt;p&gt;I know I’m supposed to be releasing my IterHelper tool right now, but I’ve been on a bit of death march lately and have had no time. Though the project hasn’t ended yet, there are some items that I need to store away for future use before they’re forgotten.&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;On small teams, non-development related responsibilities should be divided among the team. Then the single non-dev responsibility (hopefully it’s the only one) should always take precedence over development responsibilities. It sounds backwards, but no matter what my priorities, I’m always going to find a way to write code. The same isn’t true of project management. &lt;/li&gt;    &lt;li&gt;I can’t say enough about having a non-developer - who I’ll refer to as the Customer Advocate – on the project team. Things we had problems making time for – client meetings and acceptance testing for instance – fell to the Customer Advocate which takes a lot of pressure off everyone else. &lt;/li&gt;    &lt;li&gt;Story points are great, but in order to get value out of them you actually have to use them – obvious, I know. Estimating tasks and then tracking how many points were completed daily, turned an out of control project into a manageable one. &lt;/li&gt;    &lt;li&gt;Speaking of scoring, I wish we would have re-scored each task after we completed it. It would have taken minimal effort while at the same time providing us with enough information to improve our estimates. &lt;/li&gt;    &lt;li&gt;We started using &lt;a href="http://agilezen.com/"&gt;Agile Zen&lt;/a&gt; at the beginning of our project, but eventually abandoned it in favor of physical notecards. This introduced a lot of challenges, but it did allow us to grow our process exactly the way we wanted it. The added benefit is we’re in a much better position to evaluate the various kanban applications for our next project. To be clear, &lt;a href="http://agilezen.com/"&gt;Agile Zen&lt;/a&gt; is a great product it just wasn’t what we needed at the time. &lt;/li&gt;    &lt;li&gt;We didn’t use &lt;a href="http://seleniumhq.org/"&gt;Selenium&lt;/a&gt; or &lt;a href="http://watir.com/"&gt;Watir&lt;/a&gt; to run acceptance tests. Even if we couldn’t run all the tests we wanted, it would have been a huge time saver. A costly mistake that won’t be repeated. &lt;/li&gt; &lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://srtsolutions.com/aggbug.aspx?PostID=21872" width="1" height="1"&gt;</content><author><name>dhawley</name><uri>http://srtsolutions.com/members/dhawley/default.aspx</uri></author><category term="process" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/process/default.aspx" /><category term="project management" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/project+management/default.aspx" /></entry><entry><title>Does IronPython need LINQ?</title><link rel="alternate" type="text/html" href="/blogs/darrellhawley/archive/2009/09/10/does-ironpython-need-linq.aspx" /><id>/blogs/darrellhawley/archive/2009/09/10/does-ironpython-need-linq.aspx</id><published>2009-09-10T22:17:42Z</published><updated>2009-09-10T22:17:42Z</updated><content type="html">&lt;p&gt;Before I get started, I think I need to clear up some misconceptions that the Python community might have about LINQ. From the posts I’ve read, Python developers have dismissed LINQ as only a series of language enhancements that allow for SQL-like querying of lists. Though it is true that both C# and VB.NET have made changes to their respective languages for working with lists, you can still use LINQ without the aforementioned language enhancements. Python developers would be better served to think of LINQ as wrappers around the map, filter and reduce functions. In fact, LINQ is not much different than the “recipes” found in the &lt;a href="http://docs.python.org/library/itertools.html#recipes"&gt;official itertools documentation&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;So the question still stands: does IronPython need LINQ? In my &lt;a href="http://srtsolutions.com/blogs/darrellhawley/archive/2009/08/15/ironpython-and-linq-a-devlink-correction.aspx"&gt;last post&lt;/a&gt;, I described how to use LINQ from an &lt;a href="http://www.codeplex.com/IronPython"&gt;IronPython&lt;/a&gt; application and implied that I didn’t think it was the best idea. Don’t get me wrong, I really enjoy writing LINQ statements, I just don’t think LINQ fits well with IronPython. Why not? The first problem I have with the IronPython/LINQ combination is put on prominent display in this code sample.&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;print Enumerable.Average[object](      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; list, Func[object, int](lambda x:x))&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;If you are a static language aficionado, you probably are wondering what the problem is. If you’re a Python developer, however, the fact that I’m explicitly naming the “object” and “int” types is sending up giant, red flags. Python folks don’t really care what type of object it is they’re using, they only want to know what the object can do and what it contains (i.e., duck-typing). It’s much easier – and more readable - to simply write a completely Python version of the Average function. Consider the following chunk of LINQ code from C#:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;List&amp;lt;string&amp;gt; values = new List&amp;lt;string&amp;gt;(&amp;quot;the quick brown fox jumped over the lazy dogs&amp;quot;.Split());&lt;/p&gt;    &lt;p&gt;double avgLengthOfLongWords = values      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; .Select(x =&amp;gt; x.Length)       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; .Where(x =&amp;gt; x &amp;gt; 3)       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; .Average();&lt;/p&gt;    &lt;p&gt;Console.WriteLine(avgLengthOfLongWords)&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;To convert that to IronPython, we’d be forced to write something like the following:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;import clr     &lt;br /&gt;clr.AddReferenceToFileAndPath(&amp;quot;c:\users\darrell\desktop\System.Core.dll&amp;quot;) &lt;/p&gt;    &lt;p&gt;import System.Linq     &lt;br /&gt;from System import Func       &lt;br /&gt;from System.Linq import Enumerable &lt;/p&gt;    &lt;p&gt;stuff = &amp;quot;the quick brown fox jumped over the lazy dogs&amp;quot;.split() &lt;/p&gt;    &lt;p&gt;def Select(col, func):     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; return Enumerable.Select[object, object](col, Func[object, object](func))      &lt;br /&gt;def Where(col, func):      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; return Enumerable.Where[object](col, Func[object, bool](func))      &lt;br /&gt;def Average(col):      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; return Enumerable.Average[object](      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; col, Func[object, float](lambda x:x)) &lt;/p&gt;    &lt;p&gt;avgLengthOfLongWords = Average(Where(Select(stuff, lambda x:len(x)), lambda x:x &amp;gt; 3))     &lt;br /&gt;print avgLengthOfLongWords&lt;/p&gt;    &lt;p&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;Before I’m even able to write useable code, I need to add a reference to a dll, import a namespace and a couple of classes and then write some helper functions; all so that I can write LINQ statements without the benefits of chaining. That’s right – I have to nest my LINQ statements. No chaining. That’s because when we use IronPython, the &lt;em&gt;Select&lt;/em&gt; and &lt;em&gt;Where&lt;/em&gt; don’t return an IEnumerable or an IQueryable. Instead they returna WhereSelectEnumerableIterator.&lt;/p&gt;  &lt;p&gt;But do you know what &lt;em&gt;&lt;strong&gt;really&lt;/strong&gt;&lt;/em&gt; rankles me about using LINQ in IronPython? It contributes absolutely nothing to the Python community. The only way you can use LINQ is if you are using IronPython, not CPython, not Jython. I want to engage the entire Python community, not just my corner of the world. If ever there was a case where implementing the principle trumps migrating the implementation, this is it.&lt;/p&gt;  &lt;p&gt;Enter the itertools module. Itertools is a Python standard library module containing tools for working with iterators. It also will serve as the cornerstone for my implementation of LINQ. When you visit the official itertools documentation at python.org, you’re even presented with code “recipes” that could be described as LINQ-ish. The only problem is that the recipes only accomodate nesting of statements. Why is this a problem? Consider the differences in readability between &lt;em&gt;nested&lt;/em&gt; and &lt;em&gt;chained&lt;/em&gt; in the following example:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;stuff = &amp;quot;the quick brown fox jumped over the lazy dogs&amp;quot;.split() &lt;/p&gt;    &lt;p&gt;getLength = lambda x:len(x)     &lt;br /&gt;isNotTooLong = lambda x:x&amp;lt;6      &lt;br /&gt;isNotTooShort = lambda x:x&amp;gt;3 &lt;/p&gt;    &lt;p&gt;nested = ifilter(isNotTooShort, ifilter(isNotTooLong, imap(getLength, stuff))) &lt;/p&gt;    &lt;p&gt;chained = IterHelper(stuff).select(getLength).where(isNotTooLong).where(isNotTooShort)&lt;/p&gt;    &lt;p&gt;&lt;/p&gt;    &lt;p&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;As always is the case with nesting methods, you have to read the statement populating &lt;em&gt;nested&lt;/em&gt; backwards. That is, the outermost function call is the last to be run and you work your way inwards from there to find the origin. This is not a big deal to most of us since this is something we had to get used to very early in our careers. But when you compare that to the statement populating &lt;em&gt;chained&lt;/em&gt;, I know I can read it from left to right. My eyes aren’t jumping back and forth to understand what is happening in what should be a relatively simple statement.&lt;/p&gt;  &lt;p&gt;So what does IterHelper look like?&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;class IterHelper(object):     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; def __init__(self, someIterable):      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; self.someIterable = someIterable      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; def __iter__(self):      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; return self.someIterable      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; def next(self):      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; return self.someIterable.next()      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; def select(self, func):      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; return IterHelper(itertools.imap(func, self.someIterable))      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; def where(self, predicate):      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; return IterHelper(itertools.ifilter(predicate, self.someIterable))&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;This extremely simplistic version of IterHelper is really only a wrapper around functions found in the itertools module. This is great news since any application written using Python 2.3 or later can make use of this pattern with little effort. There’s no special libraries AND everyone is invited regardless of your flavor of Python.&lt;/p&gt;  &lt;p&gt;My plan is to release IterHelper as an open source project by sometime by mid-October. I have a well-tested, basic implementation now, but I still have questions regarding licensing, hosting and deployment. I will be doing a bit of research on these topics and be posting what I’ve learned in my Notes to Self series.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://srtsolutions.com/aggbug.aspx?PostID=15424" width="1" height="1"&gt;</content><author><name>dhawley</name><uri>http://srtsolutions.com/members/dhawley/default.aspx</uri></author><category term="python" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/python/default.aspx" /><category term="IronPython" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/IronPython/default.aspx" /><category term=".NET" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/.NET/default.aspx" /></entry><entry><title>IronPython and LINQ: A Devlink Correction</title><link rel="alternate" type="text/html" href="/blogs/darrellhawley/archive/2009/08/15/ironpython-and-linq-a-devlink-correction.aspx" /><id>/blogs/darrellhawley/archive/2009/08/15/ironpython-and-linq-a-devlink-correction.aspx</id><published>2009-08-16T03:22:21Z</published><updated>2009-08-16T03:22:21Z</updated><content type="html">&lt;p&gt;During my “Anatomy of an &lt;a href="http://www.codeplex.com/IronPython"&gt;IronPython&lt;/a&gt; Application” presentation at Devlink, I mistakenly said that LINQ can be consumed from IronPython easily. I said this because I was thinking that IronPython 2.6 was built using .NET 3.5 when in fact it’s built with .NET 2.0. Fortunately, if you want to use LINQ, you still can because .NET 3.5 is really .NET 2.0 plus extensions; you just have a bit of extra work to do. First on the todo list is to copy the System.Core.dll for 3.5 to some other location (I was able to get to it from it’s home in the c:\windows\assembly directory) and then use the “clr.AddReferenceToFileAndPath” in your IP code to gain access. Then, with a simple import of the Enumerable or Queryable type, you magically have access to LINQ.&lt;/p&gt;  &lt;p&gt;Still, the story doesn’t end there. You have to remember that IronPython does NOT support extension methods and since LINQ is pretty much a collection of extensions methods, there’s a problem. Why this design decision? Because in order to support extension methods, the IronPython team would have had to make changes to the core language which would have, of course, been rather un-Pythonic. This means that the code for consuming LINQ is going to be somewhat messy. The following snippet gives an example of consuming the Average function of the Enumerable object.&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;clr.AddReferenceToFileAndPath(r&amp;quot;C:\folder\System.Core.dll&amp;quot;)      &lt;br /&gt;from System.Linq import Enumerable       &lt;br /&gt;from System import Func &lt;/p&gt;    &lt;p&gt;list = [1,2,3,4,5] &lt;/p&gt;    &lt;p&gt;print Enumerable.Average[object](      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; list, Func[object, int](lambda x:x))&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;I have a lot of concerns as soon as I see “object” and “int” in brackets. At this point I’m going to hold save those concerns until my next post. Instead I’m going to leave this as an example of consuming LINQ from IronPython.&lt;/p&gt;  &lt;p&gt;I should point out that &lt;a href="http://devhawk.net/"&gt;Harry Pierson&lt;/a&gt;’s post on &lt;a href="http://ironpython-urls.blogspot.com/2009/01/devhawk-ironpython-and-linq-to-xml.html"&gt;IronPython and Linq-to-XML&lt;/a&gt; really got me started on this topic. I also have to give a shout-out to &lt;a href="http://blogs.msdn.com/chrsmith/"&gt;Chris Smith&lt;/a&gt; who was kind enough to help me out and relay a couple of &lt;a href="http://www.codemash.org/"&gt;CodeMash&lt;/a&gt; stories at the same time.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://srtsolutions.com/aggbug.aspx?PostID=13664" width="1" height="1"&gt;</content><author><name>dhawley</name><uri>http://srtsolutions.com/members/dhawley/default.aspx</uri></author><category term="IronPython" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/IronPython/default.aspx" /><category term=".NET" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/.NET/default.aspx" /><category term="LINQ" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/LINQ/default.aspx" /></entry><entry><title>Speaking at the Lansing Day of .NET on Saturday</title><link rel="alternate" type="text/html" href="/blogs/darrellhawley/archive/2009/07/31/speaking-at-the-lansing-day-of-net-on-saturday.aspx" /><id>/blogs/darrellhawley/archive/2009/07/31/speaking-at-the-lansing-day-of-net-on-saturday.aspx</id><published>2009-07-31T14:32:16Z</published><updated>2009-07-31T14:32:16Z</updated><content type="html">&lt;p&gt;If you’re going to be at the &lt;a href="http://dodn.org"&gt;Lansing Day of .NET&lt;/a&gt; this Saturday, stop by and catch my Anatomy of an &lt;a href="http://www.codeplex.com/IronPython"&gt;IronPython&lt;/a&gt; Application presentation. I’ve completely rewritten the talk so if you’ve seen it before, this new version will be covering completely different topics including testing and mocking. I’ll also be giving away a copy of &lt;a href="http://www.ironpythoninaction.com/"&gt;IronPython in Action&lt;/a&gt;, courtesy of &lt;a href="http://www.manning.com/"&gt;Manning Publications&lt;/a&gt;, at the end of my talk.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://srtsolutions.com/aggbug.aspx?PostID=13001" width="1" height="1"&gt;</content><author><name>dhawley</name><uri>http://srtsolutions.com/members/dhawley/default.aspx</uri></author></entry><entry><title>Note to Self 11 – Patterns in Python, Process is Everything, Selenium</title><link rel="alternate" type="text/html" href="/blogs/darrellhawley/archive/2009/07/25/note-to-self-11-patterns-in-python-process-is-everything-selenium.aspx" /><id>/blogs/darrellhawley/archive/2009/07/25/note-to-self-11-patterns-in-python-process-is-everything-selenium.aspx</id><published>2009-07-25T11:59:36Z</published><updated>2009-07-25T11:59:36Z</updated><content type="html">&lt;ul&gt;   &lt;li&gt;While studying a particular portion of &lt;a href="http://www.ironpythoninaction.com/"&gt;IronPython in Action&lt;/a&gt;, I came across a footnote to a blog post entitled &lt;a href="http://www.suttoncourtenay.org.uk/duncan/accu/pythonpatterns.html"&gt;Patterns in Python&lt;/a&gt;. By the end of the post, I found myself mentally tweaking a lot of my code. Though quite old (the page was posted February of 2003), the content remains quite relevant. &lt;/li&gt;    &lt;li&gt;I’m fortunate to be working on a project where everyone involved is committed to being agile (note the lack of a capital “A”). We’ve done enough things right that the items I would do differently are very minor. With that said, the imbalance in hours spent by each team member seems to be causing a problem… &lt;/li&gt;    &lt;li&gt;Another interesting observation – the project that I feel very fortunate to be working on is not using the technology of my choice. It’s a Java project. In fact, almost every facet of the project requires some specific technology in which I almost know nothing, yet the development process makes the experience a joy. &lt;/li&gt;    &lt;li&gt;Configuring my Selenium tests to work with Selenium RC and IE8 has not been an easy task. Some things I learned along the way…      &lt;ul&gt;       &lt;li&gt;Easiest way to create a new Selenium test is to use the Selenium IDE plugin for FireFox. It records everything you click and do and allows you to convert the recording to C#, Java, Python, PHP or Ruby. From there, further customizations are a snap. &lt;/li&gt;        &lt;li&gt;Selenium RC allows you to run your Selenium tests in browsers other than FireFox, such as IE, Chrome and Safari. &lt;/li&gt;        &lt;li&gt;Before running your tests in one of these “other” browsers, you’ll need to start the Selenium Server. Selenium Server comes parceled with the Selenium RC download and can be started from the command line with “java -jar selenium-server.jar”. &lt;/li&gt;        &lt;li&gt;To run my Selenium tests with IE8, I had to use the *iexploreproxy option even though I’m not using a proxy. Otherwise I kept getting redirected to a phantom file supposedly hidden away in my user directory. &lt;/li&gt;     &lt;/ul&gt;   &lt;/li&gt; &lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://srtsolutions.com/aggbug.aspx?PostID=12793" width="1" height="1"&gt;</content><author><name>dhawley</name><uri>http://srtsolutions.com/members/dhawley/default.aspx</uri></author><category term="python" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/python/default.aspx" /><category term="IronPython" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/IronPython/default.aspx" /><category term="Testing" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/Testing/default.aspx" /><category term="Java" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/Java/default.aspx" /><category term="process" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/process/default.aspx" /><category term="Selenium" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/Selenium/default.aspx" /></entry><entry><title>Book Review: IronPython in Action</title><link rel="alternate" type="text/html" href="/blogs/darrellhawley/archive/2009/07/14/book-review-ironpython-in-action.aspx" /><id>/blogs/darrellhawley/archive/2009/07/14/book-review-ironpython-in-action.aspx</id><published>2009-07-14T15:25:13Z</published><updated>2009-07-14T15:25:13Z</updated><content type="html">&lt;p&gt;&lt;a href="http://www.ironpythoninaction.com/"&gt;IronPython in Action&lt;/a&gt; (&lt;a href="http://www.ironpythoninaction.com/"&gt;IPIA&lt;/a&gt;) gets the distinction of being the first book published on &lt;a href="http://www.codeplex.com/IronPython"&gt;IronPython&lt;/a&gt;. As the first book, it has the responsibility of giving developers their first impression of &lt;a href="http://www.codeplex.com/IronPython"&gt;IronPython&lt;/a&gt;. &lt;a href="http://www.ironpythoninaction.com/"&gt;IPIA&lt;/a&gt; does exactly that by taking numerous shallow dives into various technologies and techniques. To be clear, this book is aimed at professional developers preferably with either .NET or Python experience. Pythonistas will find the book offers quick introductions to a number of Microsoft technologies such as Windows Forms, WPF and ASP.NET. .NET developers will get the chance to see technologies they’re already familiar with expressed in a completely new fashion.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.ironpythoninaction.com/"&gt;IPIA&lt;/a&gt; avoids the trap of simply being a brochure of Microsoft technologies using “&lt;a href="http://www.codeplex.com/IronPython"&gt;IronPython&lt;/a&gt;” in place of “C#” and “VB.NET”. Instead, the authors mix in chapters on development techniques ranging from the familiar - such as unit testing and mocking – to the more exotic such as metaprogramming. As .NET developers wind their way through the book, they’ll begin to appreciate the differences between the static and dynamic worlds – a crucial step toward wide ranging acceptance. &lt;/p&gt;  &lt;p&gt;If you’re curious about what &lt;a href="http://www.codeplex.com/IronPython"&gt;IronPython&lt;/a&gt; can do for you, &lt;a href="http://www.ironpythoninaction.com/"&gt;IronPython in Action&lt;/a&gt; is well worth your time.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://srtsolutions.com/aggbug.aspx?PostID=12498" width="1" height="1"&gt;</content><author><name>dhawley</name><uri>http://srtsolutions.com/members/dhawley/default.aspx</uri></author><category term="IronPython" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/IronPython/default.aspx" /><category term=".NET" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/.NET/default.aspx" /><category term="bookreviews" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/bookreviews/default.aspx" /></entry><entry><title>Note to Self 10 – JQuery Selectors and Custom Functions and a thought on JQuery</title><link rel="alternate" type="text/html" href="/blogs/darrellhawley/archive/2009/06/28/note-to-self-10-jquery-selectors-and-custom-functions-and-a-thought-on-jquery.aspx" /><id>/blogs/darrellhawley/archive/2009/06/28/note-to-self-10-jquery-selectors-and-custom-functions-and-a-thought-on-jquery.aspx</id><published>2009-06-28T16:03:08Z</published><updated>2009-06-28T16:03:08Z</updated><content type="html">&lt;p&gt;After using &lt;a href="http://www.python.org"&gt;Python&lt;/a&gt;, diving into &lt;a href="http://jquery.com/"&gt;jQuery&lt;/a&gt; has proven exceptionally difficult. Even though it solves the not-so-small problem of commonizing the DOM across multiple browsers, I find it very difficult to read. I know with time I’ll get used to it and maybe even find some beauty in my jQuery code, but it will never stop me from wishing for a cleaner syntax like that of Python or &lt;a href="http://www.ruby-lang.org/en/"&gt;Ruby&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;With that said, here’s a bit of what I learned about jQuery recently.&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Selectors in jQuery are a syntax for selecting an html element. Selectors can return a single element or several (or none if nothing matching is found). &lt;/li&gt;    &lt;li&gt;$(“#[elementID]”) – finds an element with an &lt;em&gt;id&lt;/em&gt; attribute equal to “elementID”. &lt;/li&gt;    &lt;li&gt;$(“[name=’elementName’]”) – gets all elements with a &lt;em&gt;name&lt;/em&gt; attribute equal to “&lt;em&gt;elementName”&lt;/em&gt; &lt;/li&gt;    &lt;li&gt;$(“[name^=’element’]”) – gets all elements with a &lt;em&gt;name&lt;/em&gt; attribute that begins with “&lt;em&gt;element”&lt;/em&gt; &lt;/li&gt;    &lt;li&gt;$(“[name$=’Name’]”) – gets all elements with a &lt;em&gt;name&lt;/em&gt; attribute that ends with “&lt;em&gt;Name”&lt;/em&gt; &lt;/li&gt;    &lt;li&gt;$(“input:checkbox”) – gets all checkboxes &lt;/li&gt;    &lt;li&gt;$(“#blah &amp;gt; input:checkbox”) – gets all checkboxes within a parent element of id &lt;em&gt;“blah”&lt;/em&gt; &lt;/li&gt;    &lt;li&gt;Creating a custom function in jQuery: &lt;/li&gt; &lt;/ul&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;strike&gt;$.fn.CustomFunctionName({function()({        &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; //code here         &lt;br /&gt;})&lt;/strike&gt;&lt;/p&gt;    &lt;p&gt;&amp;#160;&lt;/p&gt;    &lt;p&gt;&lt;font color="#ff0000"&gt;$.fn.exclaim = function(message){       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; alert(message)        &lt;br /&gt;}        &lt;br /&gt;$.fn.exclaim(&amp;quot;hello, world&amp;quot;)&lt;/font&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://srtsolutions.com/aggbug.aspx?PostID=11936" width="1" height="1"&gt;</content><author><name>dhawley</name><uri>http://srtsolutions.com/members/dhawley/default.aspx</uri></author><category term="jQuery" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/jQuery/default.aspx" /></entry><entry><title>Note to Self 9 – Exploring SharpDevelop and Going off Topic</title><link rel="alternate" type="text/html" href="/blogs/darrellhawley/archive/2009/05/29/note-to-self-9-exploring-sharpdevelop-and-going-off-topic.aspx" /><id>/blogs/darrellhawley/archive/2009/05/29/note-to-self-9-exploring-sharpdevelop-and-going-off-topic.aspx</id><published>2009-05-29T18:18:21Z</published><updated>2009-05-29T18:18:21Z</updated><content type="html">&lt;p&gt;It’s been too long since I last blogged which typically means I have too many competing ideas to settle on just one. So welcome to Note to Self 9!&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a href="http://icsharpcode.net/OpenSource/SD/Default.aspx"&gt;SharpDevelop&lt;/a&gt; is an open source IDE for the .NET platform. Is it new? Hardly. Based on the &lt;a href="http://icsharpcode.net/OpenSource/SD/NewsHistory.aspx"&gt;history of news releases&lt;/a&gt; from their website, It’s been around since December of 2000. Considering that the .NET platform was publicly announced only 6 months earlier, SharpDevelop seems only that much more mature. &lt;/li&gt;    &lt;li&gt;If you’re comfortable with the basics of Visual Studio, SharpDevelop should feel like home to you. In fact, the best way to describe SharpDevelop is “Visual Studio without a lot of stuff I don’t want and a few thid-party items I do”. &lt;/li&gt;    &lt;li&gt;SharpDevelop uses NUnit instead of MSTest. That’s right. No third party plugins to make your IDE work with NUnit. It simply works. &lt;/li&gt;    &lt;li&gt;It’s time for me to confess. It’s all about IronPython. The reason I started investigating SharpDevelop is because of my frustration with Visual Studio’s lack of support for the language. Specifically, I want Intellisense when I write IronPython. To be sure, you only get Intellisense for “non-DLR code”, but surprisingly that doesn’t seem to be as much of a handicap as you might think. &lt;/li&gt;    &lt;li&gt;Speaking of first class citizens, SharpDevelop comes stock with C#, Visual Basic, Boo (I can hear Jay Wren cheering now), IronPython and F# (now a number of SRT folks are cheering). &lt;/li&gt;    &lt;li&gt;If you’re frightened of the consequences that may come from changing your development environment, don’t be. You can open one of your existing Visual Studio solutions with SharpDevelop and start coding. Switching back is as simple as opening up your now modified project/solution in Visual Studio. &lt;/li&gt;    &lt;li&gt;For clarity, SharpDevelop is new to me. I haven’t used SharpDevelop for any projects yet so I can’t tell you about any of its nuances. I plan on putting it to the test, however, over the next several weeks. I’ll be posting about my experiences. &lt;/li&gt;    &lt;li&gt;Now for the off-topic part. I’ve been listening to &lt;a href="http://thehistoryofrome.typepad.com/"&gt;The History of Rome&lt;/a&gt;, a FANTASTIC podcast series on, well, the history of Rome. Mike Duncan, creator and narrator, is not only an engaging story teller, but also has the technical savvy to put together a professional podcast. Though it’s not the sort of podcast typically on a geek’s menu, I think there are enough parallels to some of the challenges we are facing in the software industry to make it worthwhile. &lt;/li&gt; &lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://srtsolutions.com/aggbug.aspx?PostID=11127" width="1" height="1"&gt;</content><author><name>dhawley</name><uri>http://srtsolutions.com/members/dhawley/default.aspx</uri></author><category term="IronPython" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/IronPython/default.aspx" /><category term=".NET" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/.NET/default.aspx" /><category term="C#" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/C_2300_/default.aspx" /><category term="SharpDevelop" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/SharpDevelop/default.aspx" /></entry><entry><title>Anatomy of an IronPython Application at AADND</title><link rel="alternate" type="text/html" href="/blogs/darrellhawley/archive/2009/04/07/anatomy-of-an-ironpython-application-at-aadnd.aspx" /><id>/blogs/darrellhawley/archive/2009/04/07/anatomy-of-an-ironpython-application-at-aadnd.aspx</id><published>2009-04-08T03:03:32Z</published><updated>2009-04-08T03:03:32Z</updated><content type="html">&lt;p&gt;I&amp;#39;m going to be talking IronPython at the &lt;a href="http://www.aadnd.org" target="_blank"&gt;Ann Arbor .NET Developers Group&lt;/a&gt; at &lt;a href="http://srtsolutions.com/" target="_blank"&gt;SRT Solutions&lt;/a&gt; tomorrow night (April 8) at 6:00. I&amp;#39;ll be showing you how you might introduce IronPython into your existing .NET environment through a lot of sample code and very few PowerPoint slides. I hope to see you there.&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Anatomy of an IronPython Application&lt;/strong&gt;  &lt;p&gt;&lt;em&gt;You&amp;#39;ve heard about IronPython and maybe have even taken the time to write the obligatory &amp;quot;Hello, World&amp;quot; application. Now what? The buzz around IronPython continues but there&amp;#39;s still little guidance on tools and development processes.&amp;nbsp; This presentation focuses on the basics of interacting with C# and VB.NET libraries using IronPython while introducing useful tools and techniques to get you started. Though experience with .NET is necessary, the samples and discussions are understandable to even beginning Python developers.&lt;/em&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://srtsolutions.com/aggbug.aspx?PostID=7499" width="1" height="1"&gt;</content><author><name>dhawley</name><uri>http://srtsolutions.com/members/dhawley/default.aspx</uri></author></entry><entry><title>Writing an IronPython WCF Host</title><link rel="alternate" type="text/html" href="/blogs/darrellhawley/archive/2009/03/15/writing-an-ironpython-wcf-host.aspx" /><id>/blogs/darrellhawley/archive/2009/03/15/writing-an-ironpython-wcf-host.aspx</id><published>2009-03-15T13:20:59Z</published><updated>2009-03-15T13:20:59Z</updated><content type="html">&lt;p&gt;This is a simple WCF host written in IronPython that consumes a library I wrote in C#.&lt;/p&gt; &lt;p&gt;import clr&lt;br /&gt;clr.AddReferenceByPartialName(&amp;quot;System.ServiceModel&amp;quot;)&lt;br /&gt;clr.AddReferenceByPartialName(&amp;quot;CSharpClass&amp;quot;)  &lt;p&gt;from System.ServiceModel import ServiceHost, BasicHttpBinding&lt;br /&gt;from System.ServiceModel.Description import ServiceMetadataBehavior&lt;br /&gt;from CSharpClass import PersonService, IPersonService&lt;br /&gt;from System import Array, Uri  &lt;p&gt;uri = Uri(&amp;quot;&lt;a href="http://localhost:1234/people&amp;quot;)"&gt;http://localhost:1234/people&amp;quot;)&lt;/a&gt;&lt;br /&gt;uriArray = Array[Uri]([uri]) # creates a generic array of type Uri&lt;br /&gt;serviceHost = ServiceHost(PersonService, uriArray)  &lt;p&gt;binding = BasicHttpBinding()  &lt;p&gt;serviceHost.AddServiceEndpoint(IPersonService, binding, &amp;quot;&lt;a href="http://localhost:1234/people&amp;quot;)"&gt;http://localhost:1234/people&amp;quot;)&lt;/a&gt;  &lt;p&gt;behavior = ServiceMetadataBehavior()&lt;br /&gt;behavior.HttpGetEnabled = True&lt;br /&gt;serviceHost.Description.Behaviors.Add(behavior)  &lt;p&gt;serviceHost.Open()  &lt;p&gt;raw_input(&amp;quot;Service has been started. Press Enter to exit...&amp;quot;)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://srtsolutions.com/aggbug.aspx?PostID=6921" width="1" height="1"&gt;</content><author><name>dhawley</name><uri>http://srtsolutions.com/members/dhawley/default.aspx</uri></author><category term="IronPython" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/IronPython/default.aspx" /><category term=".NET" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/.NET/default.aspx" /><category term="WCF" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/WCF/default.aspx" /></entry><entry><title>Running nose with IronPython</title><link rel="alternate" type="text/html" href="/blogs/darrellhawley/archive/2009/03/06/running-nose-with-ironpython.aspx" /><id>/blogs/darrellhawley/archive/2009/03/06/running-nose-with-ironpython.aspx</id><published>2009-03-06T19:31:38Z</published><updated>2009-03-06T19:31:38Z</updated><content type="html">&lt;p&gt;I just spent the past week at the 2009 Microsoft MVP Summit where I got a chance to talk to the some of the crew behind the dynamic languages at Microsoft. When I mentioned that I had gotten nose, a Python unit testing framework, working with IronPython, I was strongly encouraged to blog about it. Without further adieu, here&amp;#39;s my code.&lt;/p&gt; &lt;blockquote&gt; &lt;p&gt;import sys &lt;br /&gt;sys.path.append(r&amp;quot;C:\Python25\Lib\site-packages\nose-0.10.4-py2.5.egg&amp;quot;) &lt;br /&gt;sys.path.append(r&amp;quot;C:\python25\lib&amp;quot;) &lt;br /&gt;sys.path.append(r&amp;quot;C:\Python25\Lib\email&amp;quot;) &lt;br /&gt;sys.path.append(r&amp;quot;C:\Python25\Scripts&amp;quot;) &lt;br /&gt;import nose &lt;br /&gt;nose.main()&lt;/p&gt;&lt;/blockquote&gt; &lt;p&gt;I dropped this script into a directory with a couple of bogus unit tests and ran it with Python 2.5.4. Results were consistent with my expectations - successful tests passed and failing tests threw exceptions. When I ran the same suite against IronPython 2.0.0, I still received the correct results but the script took 1 minute and 20 seconds to complete. Compare that to less than a second (estimated) for CPython. For the sake of completeness, I ran the same test with IronPython 2.0.1 and received the same result.&lt;/p&gt; &lt;p&gt;The root of the problem appears to be the large number of GeneratorExitExceptions being thrown. I&amp;#39;m not sure why they&amp;#39;re being thrown, but I&amp;#39;ll continue to investigate and report my findings. If you&amp;#39;re interested in the gory details, here&amp;#39;s the stack trace of the first exception:&lt;/p&gt; &lt;blockquote&gt; &lt;p&gt;at IronPython.Runtime.PythonGenerator.ThrowThrowable() &lt;br /&gt;at IronPython.Runtime.PythonGenerator.CheckThrowable() &lt;br /&gt;at IronPython.Runtime.PythonGenerator. &lt;br /&gt;CheckThrowableAndReturnSendValue() &lt;br /&gt;at IronPython.Runtime.Operations.PythonOps. &lt;br /&gt;GeneratorCheckThrowableAndReturnSendValue(Object self) &lt;br /&gt;at S$11.lambda_method$312(Closure , Int32&amp;amp; state, Object&amp;amp; current) in C:\python25\lib\types.py:line 52 &lt;br /&gt;at Microsoft.Scripting.Runtime.GeneratorEnumerator`1. &lt;br /&gt;System.Collections.IEnumerator.MoveNext() &lt;br /&gt;at IronPython.Runtime.PythonGenerator.MoveNextWorker() &lt;br /&gt;at IronPython.Runtime.PythonGenerator.System. &lt;br /&gt;Collections.IEnumerator.MoveNext() &lt;br /&gt;at IronPython.Runtime.PythonGenerator.throw(Object type, Object value, Object traceback) &lt;br /&gt;at IronPython.Runtime.PythonGenerator.throw(Object type) &lt;br /&gt;at IronPython.Runtime.PythonGenerator.close()&lt;/p&gt;&lt;/blockquote&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://srtsolutions.com/aggbug.aspx?PostID=6751" width="1" height="1"&gt;</content><author><name>dhawley</name><uri>http://srtsolutions.com/members/dhawley/default.aspx</uri></author><category term="python" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/python/default.aspx" /><category term="IronPython" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/IronPython/default.aspx" /><category term=".NET" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/.NET/default.aspx" /><category term="Testing" scheme="http://srtsolutions.com/blogs/darrellhawley/archive/tags/Testing/default.aspx" /></entry></feed>