Programming Python, Part II
The tutorial in last month's issue covered the basics of installing Python, running it and using it. Then, we moved on to building a basic blog in Python. The blog was extremely simple—only a Python list. We focused on the posts and built a Post class:
class Post(object):
def __init__(self, title, body):
self.set_title(title)
self.set_body(body)
def set_title(self, title):
self._title = title
def get_title(self):
return self._title
def set_body(self, body):
self._body = body
def get_body(self):
return self._body
def __repr__(self):
return "Blog Post: %s" % self.get_title()
In this follow-up article, let's focus on the blog itself and go further.
Now that we have the Post class, we can make the Blog class. An initial implementation may look like this:
class Blog(object):
def __init__(self):
self._posts = []
def add_post(self, post):
self._posts.append(post)
def get_posts(self):
return self._posts
We are using a list to maintain the posts, but the interface is totally abstract behind a set of methods in the Blog class. This has a huge advantage: tomorrow we could replace that simple list with an SQL back end, and the code that uses Blog will need few, if any, changes.
Notice that there's no way to delete a post. We could tamper with _posts directly, but as long as we do what the class was meant to do, we can't delete a post. That may be good or bad, but the important thing is that by defining a set of methods, we exposed the design of how the class should be used.
The method get_posts returns all the posts. When we are writing a new post, we don't want the whole world to be able to read it until it is finished. The posts need a new member that tell whether it is published. In Post's initalizator, __init__, we add the line:
self._published = False
That makes every new post private by default. To switch states, we add the methods:
def publish(self):
self._published = True
def hide(self):
self._published = False
def is_public(self):
return self._published
In these methods, I introduced a new kind of variable—the boolean. Booleans are simple; they can be true or false. Let's play with that a bit:
>>> cool = blog.Post("Cool", "Python is cool")
>>> cool.is_public()
False
>>> cool.publish()
>>> cool.is_public()
True
>>> cool.hide()
>>> cool.is_public()
False
>>>
If, when you run is_public, you get:
Traceback (most recent call last):
File "<stdin>", line 1, in ?
File "blog.py", line 25, in is_public
return self._published
AttributeError: 'Post' object has no attribute
'_published'
That's because _published was not created, it can't be used, and is_public wants to use it. Understanding errors in your tools is important if you want to be a successful programmer.
In this short set of messages, the last line is the error itself. There are various types of errors, and this one is an AttributeError. A lot of important information is given in the traceback. A traceback is a list of “who called whom”, providing an idea of what was being executed when the error occurred.
The first line of the traceback doesn't give much information. It probably relates to the line we typed at the REPL. The second line tells that the error was in the file blog.py, on line 25, on the method is_public. Now we have the line that raised the problem.
This traceback is simple. In a real application, you would have methods that call methods that call methods and so on. In those cases, it is not uncommon to see tracebacks of 25 lines or more. I've seen tracebacks of more than 150 lines, but those were extreme cases in extreme conditions.
The next step is a modification to the Blog class to pick up only published posts. So, we add a new method:
def get_public_posts(self):
published_posts = []
for post in self._posts:
if port.is_public():
published_posts.append(post)
Python tries to be as readable as possible, but that method introduces too many new things, so it requires some careful explanations.
Trending Topics
| You Need A Budget | Feb 10, 2012 |
| The Linux powered LAN Gaming House | Feb 08, 2012 |
| Creating a vDSO: the Colonel's Other Chicken | Feb 06, 2012 |
| Your CMS Is Not Your Web Site | Feb 01, 2012 |
| Casper, the Friendly (and Persistent) Ghost | Jan 31, 2012 |
| Razor-qt 0.4 - Qt based Desktop Environment | Jan 30, 2012 |
- Readers' Choice Awards 2011
- 100% disappointed with the decision to go all digital.
- You Need A Budget
- The Linux powered LAN Gaming House
- Validate an E-Mail Address with PHP, the Right Way
- The Linux RAID-1, 4, 5 Code
- Python for Android
- Why Python?
- RSS Feeds
- Creating a vDSO: the Colonel's Other Chicken
- I didn't knew this thing by
36 min 22 sec ago - Author's reply
4 hours 46 sec ago - Link to modlys
5 hours 7 min ago - I use YNAB because of the
5 hours 18 min ago - Search
10 hours 21 min ago - Question
10 hours 45 min ago - for the record
10 hours 47 min ago - That's disappointing. Thanks
13 hours 10 min ago - Well spotted. I've corrected
14 hours 39 min ago - This is a great program. We
17 hours 40 min ago






Comments
error?
cool = blog.Post("Cool", "Python is cool")
I can't get the above line to work. Is that correct?
error?
Were you using Emacs and following the instructions in part I? If so, the class "Post" will be part of the module "blog". If not, you must arrange for that yourself - the article explains.
If I understand correctly. I'm not a Python programmer. :)