Should I learn Python instead?

F

fyleow

Hi guys,

I'm a student/hobbyist programmer interested in creating a web project.
It's nothing too complicated, I would like to get data from an RSS
feed and store that into a database. I want my website to get the
information from the database and display parts of it depending on the
criteria I set.

I just finished an OO programming class in Java and I thought it would
be a good idea to do this in C# since ASP.NET makes web applications
easier than using Java (that's what I've heard anyway). I thought it
would be easy to pick up since the language syntax is very similar but
I'm getting overwhelmed by the massive class library. MSDN docs are
very good and thorough but the language just seems a little unwieldy
and too verbose.

This is how to access an RSS feed and create an XML document to
manipulate it.

System.Net.WebRequest myRequest = System.Net.WebRequest.Create("//feed
url here");
System.Net.WebResponse myResponse = myRequest.GetResponse();
System.IO.Stream rssStream = myResponse.GetResponseStream();
System.Xml.XmlDocument rssDoc = new System.Xml.XmlDocument();

rssDoc.Load(rssStream);

Here's PHP.

$rss_feed = file_get_contents($rss_url);

I realize that learning the library is part of the process, but as a
beginner I appreciate simplicity. Is Python easier than C#? Can
someone show how to access an XML document on the web and have it ready
to be manipulated for comparison? Any other advice for a newbie?

Thanks.
 
?

=?iso-8859-1?q?Luis_M._Gonz=E1lez?=

First of all, let me tell you that you can now write apps for .NET with
Python.
There's a python implementation for the .NET framework called
Ironpython (in beta 5 now).

Regarding XML, I can't tell you much but in general, python is much
easier, cleaner, concise and intuitive than all the other alternatives
you mention.
Being a dynamic language, you can achieve more with less lines of code.

Easy tasks are easier with python, and complex tasks can look simple
with too.

I also think that Python is an excellent first language to learn.
Learn it, get used to think as a programmer, learn the basics
(functions classes, oop.) and then, when you're reasonably comfortable,
you'll be ready to pick any other language (or you'll be happy enough
to know that you don't need to learn any other one).
 
E

ej

I realize that learning the library is part of the process, but as a
beginner I appreciate simplicity.
Is Python easier than C#? Absolutely.

Can someone show how to access an XML document on the web and have it ready
to be manipulated for comparison?
Yes. (see below)
Any other advice for a newbie?
Learn Python. It's good to know other languages too, but when it comes to
getting stuff done fast & cleanly, you will find Python an invaluable tool.





# here's a simple use of the urllib module to fetch a document from the web
(output from an interactive python interpreter session):
Python 2.3.4 (#1, Feb 7 2005, 15:50:45)
[GCC 3.3.4 (pre 3.3.5 20040809)] on linux2
Type "help", "copyright", "credits" or "license" for more information.<html><head><meta http-equiv="content-type" content="text/html;
charset=ISO-8859-1"><title>Google</title><style>
....
<snip>


I don't use RSS myself, and don't happen to know a url that gets me to an
RSS document, but here's an RSS document I found at:
http://www.xml.com/pub/a/2002/12/18/dive-into-xml.html

Here's just the document itself:

<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns="http://purl.org/rss/1.0/"
xmlns:dc="http://purl.org/dc/elements/1.1/" <channel rdf:about="http://www.xml.com/cs/xml/query/q/19">
<title>XML.com</title>
<link>http://www.xml.com/</link>
<description>XML.com features a rich mix of information and services for
the XML community.</description>
<language>en-us</language>
<items>
<rdf:Seq>
<rdf:li
rdf:resource="http://www.xml.com/pub/a/2002/12/04/normalizing.html"/>
<rdf:li
rdf:resource="http://www.xml.com/pub/a/2002/12/04/som.html"/>
<rdf:li
rdf:resource="http://www.xml.com/pub/a/2002/12/04/svg.html"/>
</rdf:Seq>
</items>
</channel>
<item rdf:about="http://www.xml.com/pub/a/2002/12/04/normalizing.html">
<title>Normalizing XML, Part 2</title>
<link>http://www.xml.com/pub/a/2002/12/04/normalizing.html</link>
<description>In this second and final look at applying relational
normalization techniques to W3C XML Schema data modeling, Will Provost
discusses when not to normalize, the scope of uniqueness and the fourth and
fifth normal forms.</description>
<dc:creator>Will Provost</dc:creator>
<dc:date>2002-12-04</dc:date>
</item>
<item rdf:about="http://www.xml.com/pub/a/2002/12/04/som.html">
<title>The .NET Schema Object Model</title>
<link>http://www.xml.com/pub/a/2002/12/04/som.html</link>
<description>Priya Lakshminarayanan describes in detail the use of the
..NET Schema Object Model for programmatic manipulation of W3C XML
Schemas.</description>
<dc:creator>Priya Lakshminarayanan</dc:creator>
<dc:date>2002-12-04</dc:date>
</item>
<item rdf:about="http://www.xml.com/pub/a/2002/12/04/svg.html">
<title>SVG's Past and Promising Future</title>
<link>http://www.xml.com/pub/a/2002/12/04/svg.html</link>
<description>In this month's SVG column, Antoine Quint looks back at
SVG's journey through 2002 and looks forward to 2003.</description>
<dc:creator>Antoine Quint</dc:creator>
<dc:date>2002-12-04</dc:date>
</item>
</rdf:RDF>



Here's a separate interpreter session where I have put the document above
into a string called xml:

This is the important, functional part:

The rest of what follows is just me poking around at the document structure.
You can write whatever code you need to get what you want:
[QUOTE= said:
c1.getElementsByTagName('dc:date')[0].toxml()
u' said:
date = c1.getElementsByTagName('dc:date')[0]
date.nodeValue
date.hasChildNodes
date.hasChildNodes() True
date.firstChild
dir(date.firstChild)
[/QUOTE]
['ATTRIBUTE_NODE', 'CDATA_SECTION_NODE', 'COMMENT_NODE',
'DOCUMENT_FRAGMENT_NODE', 'DOCUMENT_NODE', 'DOCUMENT_TYPE_NODE',
'ELEMENT_NODE', 'ENTITY_NODE', 'ENTITY_REFERENCE_NODE', 'NOTATION_NODE',
'PROCESSING_INSTRUCTION_NODE', 'TEXT_NODE', 'TREE_POSITION_ANCESTOR',
'TREE_POSITION_DESCENDENT', 'TREE_POSITION_DISCONNECTED',
'TREE_POSITION_EQUIVALENT', 'TREE_POSITION_FOLLOWING',
'TREE_POSITION_PRECEDING', 'TREE_POSITION_SAME_NODE', '__doc__', '__len__',
'__module__', '__nonzero__', '__repr__', '__setattr__',
'_call_user_data_handler', '_get_childNodes', '_get_data',
'_get_firstChild', '_get_isWhitespaceInElementContent', '_get_lastChild',
'_get_length', '_get_localName', '_get_nodeValue', '_get_wholeText',
'_set_data', '_set_nodeValue', 'appendChild', 'appendData', 'attributes',
'childNodes', 'cloneNode', 'data', 'deleteData', 'firstChild',
'getInterface', 'getUserData', 'hasAttributes', 'hasChildNodes',
'insertBefore', 'insertData', 'isSameNode', 'isSupported',
'isWhitespaceInElementContent', 'lastChild', 'length', 'localName',
'namespaceURI', 'nextSibling', 'nodeName', 'nodeType', 'nodeValue',
'normalize', 'ownerDocument', 'parentNode', 'prefix', 'previousSibling',
'removeChild', 'replaceChild', 'replaceData', 'replaceWholeText',
'setUserData', 'splitText', 'substringData', 'toprettyxml', 'toxml',
'unlink', 'wholeText', 'writexml']
# call dir() and help() on your doc and various other things to see what is
available.
# for example
['ATTRIBUTE_NODE', 'CDATA_SECTION_NODE', 'COMMENT_NODE',
'DOCUMENT_FRAGMENT_NODE', 'DOCUMENT_NODE', 'DOCUMENT_TYPE_NODE',
'ELEMENT_NODE', 'ENTITY_NODE', 'ENTITY_REFERENCE_NODE', 'NOTATION_NODE',
'PROCESSING_INSTRUCTION_NODE', 'TEXT_NODE', 'TREE_POSITION_ANCESTOR',
'TREE_POSITION_DESCENDENT', 'TREE_POSITION_DISCONNECTED',
'TREE_POSITION_EQUIVALENT', 'TREE_POSITION_FOLLOWING',
'TREE_POSITION_PRECEDING', 'TREE_POSITION_SAME_NODE', '__doc__', '__init__',
'__module__', '__nonzero__', '__repr__', '_attrs', '_attrsNS',
'_call_user_data_handler', '_child_node_types', '_get_attributes',
'_get_childNodes', '_get_firstChild', '_get_lastChild', '_get_localName',
'_get_tagName', '_magic_id_nodes', 'appendChild', 'attributes',
'childNodes', 'cloneNode', 'firstChild', 'getAttribute', 'getAttributeNS',
'getAttributeNode', 'getAttributeNodeNS', 'getElementsByTagName',
'getElementsByTagNameNS', 'getInterface', 'getUserData', 'hasAttribute',
'hasAttributeNS', 'hasAttributes', 'hasChildNodes', 'insertBefore',
'isSameNode', 'isSupported', 'lastChild', 'localName', 'namespaceURI',
'nextSibling', 'nodeName', 'nodeType', 'nodeValue', 'normalize',
'ownerDocument', 'parentNode', 'prefix', 'previousSibling',
'removeAttribute', 'removeAttributeNS', 'removeAttributeNode',
'removeAttributeNodeNS', 'removeChild', 'replaceChild', 'schemaType',
'setAttribute', 'setAttributeNS', 'setAttributeNode', 'setAttributeNodeNS',
'setIdAttribute', 'setIdAttributeNS', 'setIdAttributeNode', 'setUserData',
'tagName', 'toprettyxml', 'toxml', 'unlink', 'writexml']


# See also: http://docs.python.org/lib/module-xml.dom.minidom.html

There may well be other, more specialized Python modules just for doing
RSS - check around and at the Python Cheese Shop: http://www.python.org/pypi

HTH,
-ej
 
S

Serge Orlov

fyleow said:
Hi guys,

I'm a student/hobbyist programmer interested in creating a web project.
It's nothing too complicated, I would like to get data from an RSS
feed and store that into a database. I want my website to get the
information from the database and display parts of it depending on the
criteria I set.

I just finished an OO programming class in Java and I thought it would
be a good idea to do this in C# since ASP.NET makes web applications
easier than using Java (that's what I've heard anyway). I thought it
would be easy to pick up since the language syntax is very similar but
I'm getting overwhelmed by the massive class library. MSDN docs are
very good and thorough but the language just seems a little unwieldy
and too verbose.

This is how to access an RSS feed and create an XML document to
manipulate it.

System.Net.WebRequest myRequest = System.Net.WebRequest.Create("//feed
url here");
System.Net.WebResponse myResponse = myRequest.GetResponse();
System.IO.Stream rssStream = myResponse.GetResponseStream();
System.Xml.XmlDocument rssDoc = new System.Xml.XmlDocument();

rssDoc.Load(rssStream);

Here's PHP.

$rss_feed = file_get_contents($rss_url);

Here is Python (including printing all titles in the feed):

import urllib
import elementtree.ElementTree as ET

feed = ET.parse(urllib.urlopen("http://www.python.org/channews.rdf"))
for item_title in feed.findall("channel/item/title"):
print item_title.text

elementtree library is available here:
http://effbot.org/zone/element-index.htm
I realize that learning the library is part of the process, but as a
beginner I appreciate simplicity. Is Python easier than C#?

Developers of Python try to make it simple and powerful, so in general
Python is easier to use, but you may hit corner cases.

Any other advice for a newbie?

Sometimes open source documentation is harder to understand than
documentation for commercial libraries. In such cases I usually walk
over all functions in the library trying them, getting familiar with
the library's jargon. So the learning curve is more steep but when
you're on the top things are much easier.

Serge
 
F

fyleow

Thanks guys. I picked up the Apress book on Python and downloaded the
Komodo IDE trial to get me started.

I'm going to try using Django to build my website and since my brother
already has hosting I'll just borrow some space.
He does PHP for a living, so it would probably be better for me to use
that instead.

Unfortunately, I'm allergic to dollar signs ;)
 
G

Gerard Flanagan

fyleow said:
Hi guys,

I'm a student/hobbyist programmer interested in creating a web project.
It's nothing too complicated, I would like to get data from an RSS
feed and store that into a database. I want my website to get the
information from the database and display parts of it depending on the
criteria I set.
[...]

This is how to access an RSS feed and create an XML document to
manipulate it.

System.Net.WebRequest myRequest = System.Net.WebRequest.Create("//feed
url here");
System.Net.WebResponse myResponse = myRequest.GetResponse();
System.IO.Stream rssStream = myResponse.GetResponseStream();
System.Xml.XmlDocument rssDoc = new System.Xml.XmlDocument();

rssDoc.Load(rssStream);

Here's PHP.

$rss_feed = file_get_contents($rss_url);

I've never used it myself but maybe this would be useful:

http://feedparser.org/
From the Homepage:
u'For documentation <em>only</em>'

Gerard
 
S

Steve Bergman

There is also TurboGears, which (IMO) is greatness in the making.
Though unfortunately, the documentation is still catching up to the
greatness. I'm using it and loving it, though.

http://www.turbogears.org

DJango is great for content management. TurboGears is (IMO) a more
generalized framework. It all depends on what kind of site you are
wanting to create.
 
L

Lawrence Oluyede

fyleow said:
I'm a student/hobbyist programmer interested in creating a web project.

I'm a student too and I've done a little Python web related stuff long ago.
It's nothing too complicated, I would like to get data from an RSS
feed and store that into a database. I want my website to get the
information from the database and display parts of it depending on the
criteria I set.

That's a really easy thing to do. You're lucky because thanks to Mark Pilgrim
we have one of the best RSS/Atom parsing libraries out there:
http://feedparser.org/

It's quite simple:

1 - you parse the feed
2 - you take the data
3 - you display them in your html page with one of the python frameworks
available.
I just finished an OO programming class in Java and I thought it would
be a good idea to do this in C# since ASP.NET makes web applications
easier than using Java (that's what I've heard anyway).

It's quite right. ASP.NET is easier than JSP and J2EE stuff but Python is
better to me :)
I thought it
would be easy to pick up since the language syntax is very similar but
I'm getting overwhelmed by the massive class library. MSDN docs are
very good and thorough but the language just seems a little unwieldy
and too verbose.

Yeah they like in that way. A 40000+ class library and gigatons of
documents. All is verbose in their static world: documents, books, languages :(
This is how to access an RSS feed and create an XML document to
manipulate it.

I know the author of the RSS.NET library and I used it in the past, it can save
you some machinery. But why get a bad language with a good library instead of a
wonderful library and a very good language :) ?
Is Python easier than C#?

IMHO yes.
Can
someone show how to access an XML document on the web and have it ready
to be manipulated for comparison? Any other advice for a newbie?

Start with the examples on the feedparser homepage. Then choose a framework
(Turbogears? CherryPy?) and then it's a matter of _minutes_ to have a HTML page
filled with your data.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,065
Latest member
OrderGreenAcreCBD

Latest Threads

Top