Mini Statistics
Join Date
04-09-2007
Last Activity
03-19-2010 04:34 AM
Blog Entries
3
Join Groups 2 Permission Groups
Recent Visitors
The last 10 visitor(s) to this page were:
  1.  Chronic
  2.  exicute
  3.  G0d
  4.  Guest
  5.  lor
  6.  MeTh0Dz
  7.  Moudi
  8.  Predictor
  9.  thegamemaker
  10.  Tungsten Tide
This page has had 2,275 visits
Tab Content
Visitor Messages
About Me
Friends
Blog

  1. edwar
    hi void,
    i have a question about the code you wrote before to siren, the code was about how to open a text file and count the every word in the text, howmany times came in the text.
    the question is, i need to write the same code but i have to sort the words in alphabetic, do have any idea how to do that, and where should i add the code.
    thanx,
  2. juankircp
    i need Jr. Programmer
    juankircp10002HOTMAIL.COM
  3. hydenisama
    ok bro can i become your friends?
  4. xXHalfSliceXx
    Woot Woot there is a v0id in my life...
  5. Natsuki
    Thank you! Very helpful moderator
Showing Visitor Messages 1 to 5 of 5

About v0id

Basic Information

Contact

Statistics

Total Posts
Total Posts
2,978
Posts Per Day
2.76
Last Post
The Word Challenge 09-17-2009 11:58 AM
Visitor Messages
Total Messages
5
Most Recent Message
09-11-2009
Blog
Total Entries
3
Last Blog Entry
CherryPy(thon) 06-02-2008 11:00 PM
General Information
Last Activity
03-19-2010 04:34 AM
Join Date
04-09-2007
Referrals
1

10 Friends

Showing Friends 1 to 10 of 10

 View v0id's Blog

CherryPy(thon)

by v0id on 06-02-2008 at 11:00 PM
I discussed the process of generating HTML-pages using templates in my previous blog entry, now we'll go a step further and let the output be used by a server, instead of manually getting the output, and save it as a HTML-file. For this purpose we'll use CherryPy, which is a web development framework for Python. It's not just a framework; it can also work as an server itself. That is primary advantage we're going to care about for now.

The most important function we're going to use

Read More

Categories
Uncategorized

RSS and Python

by v0id on 06-01-2008 at 11:00 PM
I did recently work on a project where I had to parse a RSS feed for a given site. I'd earlier been using PyXML for this purpose, but I thought there must be some easier way to parse RSS, and it turned out I was right. I stumbled upon a Python module called Feedparser, which is a module specialized in parsing RSS and Atom feeds.

Everything is centered around a single dictionary, which makes the parsed data really easy and intuitive to handle, because of the simple keys used by Feedparser.

Read More

Categories
Uncategorized

Templating with Python

by v0id on 06-01-2008 at 11:00 PM
There's lots of different scripting languages around nowadays aimed on web development, like PHP, Ruby, the .NETs, and so on. But it's also possible to do web development using some alternative languages, which commonly isn't known as languages for web development, like Python. And that's exactly what this blog entry is going to be about. I'll show you how to generate HTML-pages easily with Python and templates.

I'm going to use much of the code I used in my previous blog entry, "

Read More

Categories
Uncategorized