<?xml version="1.0" encoding="UTF-8"?><rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
> <channel><title>Comments on: PHP vs Python: Analysis</title> <atom:link href="http://www.hurricanesoftwares.com/php-vs-python-analysis/feed/" rel="self" type="application/rss+xml" /><link>http://www.hurricanesoftwares.com/php-vs-python-analysis/</link> <description>For Developers, Designers and SEO Specialists</description> <lastBuildDate>Fri, 27 Jan 2012 06:41:00 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.2.1</generator> <item><title>By: PHP Programmers</title><link>http://www.hurricanesoftwares.com/php-vs-python-analysis/comment-page-1/#comment-1367</link> <dc:creator>PHP Programmers</dc:creator> <pubDate>Mon, 31 Oct 2011 08:53:00 +0000</pubDate> <guid
isPermaLink="false">http://www.hurricanesoftwares.com/?p=247#comment-1367</guid> <description>PHP is more famous because of its frameworks</description> <content:encoded><![CDATA[<p>PHP is more famous because of its frameworks</p> ]]></content:encoded> </item> <item><title>By: PHP 碰上 Python &#124; 網頁開發網誌</title><link>http://www.hurricanesoftwares.com/php-vs-python-analysis/comment-page-1/#comment-1346</link> <dc:creator>PHP 碰上 Python &#124; 網頁開發網誌</dc:creator> <pubDate>Tue, 06 Sep 2011 09:45:09 +0000</pubDate> <guid
isPermaLink="false">http://www.hurricanesoftwares.com/?p=247#comment-1346</guid> <description>[...] Ashish 所寫的「PHP 碰上 Python」，從語言特性到執行效能，比較 PHP 和 Python [...]</description> <content:encoded><![CDATA[<p>[...] Ashish 所寫的「PHP 碰上 Python」，從語言特性到執行效能，比較 PHP 和 Python [...]</p> ]]></content:encoded> </item> <item><title>By: Php Programmer</title><link>http://www.hurricanesoftwares.com/php-vs-python-analysis/comment-page-1/#comment-1069</link> <dc:creator>Php Programmer</dc:creator> <pubDate>Mon, 26 Apr 2010 18:03:10 +0000</pubDate> <guid
isPermaLink="false">http://www.hurricanesoftwares.com/?p=247#comment-1069</guid> <description>PHP is really no match to Python. I have been PHP developer for 3 years and switched to python because i feel Python is more like a hybrid language. Because of python flexibility features i can easily scale.</description> <content:encoded><![CDATA[<p>PHP is really no match to Python. I have been PHP developer for 3 years and switched to python because i feel Python is more like a hybrid language. Because of python flexibility features i can easily scale.</p> ]]></content:encoded> </item> <item><title>By: mchrisneglia</title><link>http://www.hurricanesoftwares.com/php-vs-python-analysis/comment-page-1/#comment-1001</link> <dc:creator>mchrisneglia</dc:creator> <pubDate>Mon, 11 May 2009 10:16:33 +0000</pubDate> <guid
isPermaLink="false">http://www.hurricanesoftwares.com/?p=247#comment-1001</guid> <description>I rewrote a dead simple script for spidering a large number of websites.  with php, i used curl, with python I used httplib.  It was my first python script, so take this with a grain of salt.  Note also that the python script wasn&#039;t as sophisticated (ie, with curl you can make concurrent connections and tell it to follow redirects but in python you have to do this yourself with a recursive function or something similar, or use the twisted / some other framework).  discounting those differences, I found that python was orders of magnitude easier, briefer to code, and got the job done faster than curl working concurrently (on windows/apache2, mind you) because curl and php has weird issues, even when running php as fastcgi&lt;br&gt;&lt;br&gt;now the moral of this story is, that when you try to do anything interesting in php it craps out because of the quality of the libraries you are using.  It is too easy to code something and then read somewhere that your app that uses a function like &#039;array_key_exists&#039; is really slow and better to use isset.  It&#039;s too many things put together into a franken-mess, the community is great but it&#039;s like herding cats.  From what I&#039;ve read and from my initial impresssion-and I&#039;m too much of a noob to say with authority-that python&#039;s libraries are just better quality and more performant.  Some of this comes from the principle of the language for there to be only one good way to do something.&lt;br&gt;&lt;br&gt;Personally, I love php and will probably still continue to use it because I work with drupal and codeigniter, no way aroudn that.  But I probably will be transitioning to python.  Pydocs can&#039;t compete with &lt;a href=&quot;http://php.net&quot; rel=&quot;nofollow&quot;&gt;php.net&lt;/a&gt; though, and that&#039;s probably why it hasn&#039;t taken over market share.  If you could have web programmers who get onboard with python, they could leverage their skills to make real desktop apps without having to do something stupid prism, adobe air, google gears type browser-development enviroments.</description> <content:encoded><![CDATA[<p>I rewrote a dead simple script for spidering a large number of websites.  with php, i used curl, with python I used httplib.  It was my first python script, so take this with a grain of salt.  Note also that the python script wasn&#39;t as sophisticated (ie, with curl you can make concurrent connections and tell it to follow redirects but in python you have to do this yourself with a recursive function or something similar, or use the twisted / some other framework).  discounting those differences, I found that python was orders of magnitude easier, briefer to code, and got the job done faster than curl working concurrently (on windows/apache2, mind you) because curl and php has weird issues, even when running php as fastcgi</p><p>now the moral of this story is, that when you try to do anything interesting in php it craps out because of the quality of the libraries you are using.  It is too easy to code something and then read somewhere that your app that uses a function like &#39;array_key_exists&#39; is really slow and better to use isset.  It&#39;s too many things put together into a franken-mess, the community is great but it&#39;s like herding cats.  From what I&#39;ve read and from my initial impresssion-and I&#39;m too much of a noob to say with authority-that python&#39;s libraries are just better quality and more performant.  Some of this comes from the principle of the language for there to be only one good way to do something.</p><p>Personally, I love php and will probably still continue to use it because I work with drupal and codeigniter, no way aroudn that.  But I probably will be transitioning to python.  Pydocs can&#39;t compete with <a
href="http://php.net" rel="nofollow">php.net</a> though, and that&#39;s probably why it hasn&#39;t taken over market share.  If you could have web programmers who get onboard with python, they could leverage their skills to make real desktop apps without having to do something stupid prism, adobe air, google gears type browser-development enviroments.</p> ]]></content:encoded> </item> <item><title>By: mchrisneglia</title><link>http://www.hurricanesoftwares.com/php-vs-python-analysis/comment-page-1/#comment-854</link> <dc:creator>mchrisneglia</dc:creator> <pubDate>Mon, 11 May 2009 06:16:33 +0000</pubDate> <guid
isPermaLink="false">http://www.hurricanesoftwares.com/?p=247#comment-854</guid> <description>I rewrote a dead simple script for spidering a large number of websites.  with php, i used curl, with python I used httplib.  It was my first python script, so take this with a grain of salt.  Note also that the python script wasn&#039;t as sophisticated (ie, with curl you can make concurrent connections and tell it to follow redirects but in python you have to do this yourself with a recursive function or something similar, or use the twisted / some other framework).  discounting those differences, I found that python was orders of magnitude easier, briefer to code, and got the job done faster than curl working concurrently (on windows/apache2, mind you) because curl and php has weird issues, even when running php as fastcgi&lt;br&gt;&lt;br&gt;now the moral of this story is, that when you try to do anything interesting in php it craps out because of the quality of the libraries you are using.  It is too easy to code something and then read somewhere that your app that uses a function like &#039;array_key_exists&#039; is really slow and better to use isset.  It&#039;s too many things put together into a franken-mess, the community is great but it&#039;s like herding cats.  From what I&#039;ve read and from my initial impresssion-and I&#039;m too much of a noob to say with authority-that python&#039;s libraries are just better quality and more performant.  Some of this comes from the principle of the language for there to be only one good way to do something.&lt;br&gt;&lt;br&gt;Personally, I love php and will probably still continue to use it because I work with drupal and codeigniter, no way aroudn that.  But I probably will be transitioning to python.  Pydocs can&#039;t compete with &lt;a href=&quot;http://php.net&quot; rel=&quot;nofollow&quot;&gt;php.net&lt;/a&gt; though, and that&#039;s probably why it hasn&#039;t taken over market share.  If you could have web programmers who get onboard with python, they could leverage their skills to make real desktop apps without having to do something stupid prism, adobe air, google gears type browser-development enviroments.</description> <content:encoded><![CDATA[<p>I rewrote a dead simple script for spidering a large number of websites.  with php, i used curl, with python I used httplib.  It was my first python script, so take this with a grain of salt.  Note also that the python script wasn&#39;t as sophisticated (ie, with curl you can make concurrent connections and tell it to follow redirects but in python you have to do this yourself with a recursive function or something similar, or use the twisted / some other framework).  discounting those differences, I found that python was orders of magnitude easier, briefer to code, and got the job done faster than curl working concurrently (on windows/apache2, mind you) because curl and php has weird issues, even when running php as fastcgi</p><p>now the moral of this story is, that when you try to do anything interesting in php it craps out because of the quality of the libraries you are using.  It is too easy to code something and then read somewhere that your app that uses a function like &#39;array_key_exists&#39; is really slow and better to use isset.  It&#39;s too many things put together into a franken-mess, the community is great but it&#39;s like herding cats.  From what I&#39;ve read and from my initial impresssion-and I&#39;m too much of a noob to say with authority-that python&#39;s libraries are just better quality and more performant.  Some of this comes from the principle of the language for there to be only one good way to do something.</p><p>Personally, I love php and will probably still continue to use it because I work with drupal and codeigniter, no way aroudn that.  But I probably will be transitioning to python.  Pydocs can&#39;t compete with <a
href="http://php.net" rel="nofollow">php.net</a> though, and that&#39;s probably why it hasn&#39;t taken over market share.  If you could have web programmers who get onboard with python, they could leverage their skills to make real desktop apps without having to do something stupid prism, adobe air, google gears type browser-development enviroments.</p> ]]></content:encoded> </item> <item><title>By: pcdinh</title><link>http://www.hurricanesoftwares.com/php-vs-python-analysis/comment-page-1/#comment-751</link> <dc:creator>pcdinh</dc:creator> <pubDate>Sat, 17 Jan 2009 09:36:07 +0000</pubDate> <guid
isPermaLink="false">http://www.hurricanesoftwares.com/?p=247#comment-751</guid> <description>&gt; Md5 implementation in PHP is fairly easy and nice but not as secure as of Python&lt;br&gt;Do you really know what you are saying? Have you ever implemented a mathematical algorithm? &lt;br&gt;&lt;br&gt;&gt; Python has delivered much scalable applications than PHP&lt;br&gt;I dare to say that you even do not have any definition of &quot;scalable&quot; in your mind at the moment. You think that I don&#039;t have any experience with Plone, which is a deadly slow application?&lt;br&gt;&lt;br&gt;&gt; Many of the Google applications are in Python. &lt;br&gt;&gt; Why do you think they have chosen Python?&lt;br&gt;&lt;br&gt;Do you know that PHP powers lot of extremely high traffic websites in the world? Wikipedia, Facebook, Yahoo, Flickr, Rapidshare ..... Why do they build them in PHP, not Python? Which ones are in Python? Google? Gmail, Google Calendar, Google Earth are made in Java and C++. Lot of Python code used in Google is for batch proccessing&lt;br&gt;&lt;br&gt;&gt; Python applications are rather complex and &lt;br&gt;&gt; usually involve a lot better programmers who take care of the security issues.&lt;br&gt;Why are they complex? Because of complexity nature of Python language or project requirements? Why are they developed with so-called &quot;lot better programmers&quot;? Who are &quot;lot better programmers&quot;? Where do they come from? Why do they work on Python projects instead of PHP, Java, C#? You need to explain all the things before you conclude.&lt;br&gt;&lt;br&gt;You are making assumptions that Python is apparently better than PHP without any evidence or even knowledge</description> <content:encoded><![CDATA[<p>&gt; Md5 implementation in PHP is fairly easy and nice but not as secure as of Python<br
/>Do you really know what you are saying? Have you ever implemented a mathematical algorithm?</p><p>&gt; Python has delivered much scalable applications than PHP<br
/>I dare to say that you even do not have any definition of &#8220;scalable&#8221; in your mind at the moment. You think that I don&#39;t have any experience with Plone, which is a deadly slow application?</p><p>&gt; Many of the Google applications are in Python. <br
/>&gt; Why do you think they have chosen Python?</p><p>Do you know that PHP powers lot of extremely high traffic websites in the world? Wikipedia, Facebook, Yahoo, Flickr, Rapidshare &#8230;.. Why do they build them in PHP, not Python? Which ones are in Python? Google? Gmail, Google Calendar, Google Earth are made in Java and C++. Lot of Python code used in Google is for batch proccessing</p><p>&gt; Python applications are rather complex and <br
/>&gt; usually involve a lot better programmers who take care of the security issues.<br
/>Why are they complex? Because of complexity nature of Python language or project requirements? Why are they developed with so-called &#8220;lot better programmers&#8221;? Who are &#8220;lot better programmers&#8221;? Where do they come from? Why do they work on Python projects instead of PHP, Java, C#? You need to explain all the things before you conclude.</p><p>You are making assumptions that Python is apparently better than PHP without any evidence or even knowledge</p> ]]></content:encoded> </item> <item><title>By: codeassembly</title><link>http://www.hurricanesoftwares.com/php-vs-python-analysis/comment-page-1/#comment-734</link> <dc:creator>codeassembly</dc:creator> <pubDate>Fri, 16 Jan 2009 08:07:36 +0000</pubDate> <guid
isPermaLink="false">http://www.hurricanesoftwares.com/?p=247#comment-734</guid> <description>&quot;Sample script loops through a FOR statement 2,000,000 times calculating the MD5 hash of N + N, N equaling the number of passes thus far.&quot;&lt;br&gt;&lt;br&gt;If you are calling the md5 function then this is irrelevant , because the function is written in C you&#039;re benchmarking the loop not the md5 algorithm implementation, both languages are glue, they call module functions written usually in C, most scripts written in these languages will be a bunch of such calls with some little glue code to hold them together.&lt;br&gt;&lt;br&gt;Neither php or python is used to write complex algorithms or data structures (imagine writing something like the md5 algorithm in php or python, they are extremly slow for intensive processing algorithms).&lt;br&gt;&lt;br&gt;So performance lies in your algorithm implementation and in the algorithms built in the C (mostly) core of the language, parsing and evaluating code is just a very small percent of the overall performance, from this point of view (performance) they are the mostly the same.</description> <content:encoded><![CDATA[<p>&#8220;Sample script loops through a FOR statement 2,000,000 times calculating the MD5 hash of N + N, N equaling the number of passes thus far.&#8221;</p><p>If you are calling the md5 function then this is irrelevant , because the function is written in C you&#39;re benchmarking the loop not the md5 algorithm implementation, both languages are glue, they call module functions written usually in C, most scripts written in these languages will be a bunch of such calls with some little glue code to hold them together.</p><p>Neither php or python is used to write complex algorithms or data structures (imagine writing something like the md5 algorithm in php or python, they are extremly slow for intensive processing algorithms).</p><p>So performance lies in your algorithm implementation and in the algorithms built in the C (mostly) core of the language, parsing and evaluating code is just a very small percent of the overall performance, from this point of view (performance) they are the mostly the same.</p> ]]></content:encoded> </item> <item><title>By: Dan</title><link>http://www.hurricanesoftwares.com/php-vs-python-analysis/comment-page-1/#comment-733</link> <dc:creator>Dan</dc:creator> <pubDate>Thu, 15 Jan 2009 17:09:08 +0000</pubDate> <guid
isPermaLink="false">http://www.hurricanesoftwares.com/?p=247#comment-733</guid> <description>Hi!,&lt;br&gt;&lt;br&gt;let say my 5 cents...&lt;br&gt;&lt;br&gt;-PHP has too crappy embedding system. I guess its need for &lt;a href=&quot;http://Zend.com&quot; rel=&quot;nofollow&quot;&gt;Zend.com&lt;/a&gt;... PHP seems as not free for this reason.&lt;br&gt;&lt;br&gt;-Python has poorly support for static variables, methods. This is not suitable.&lt;br&gt;&lt;br&gt;-Pythons indentations is a hidden jail&lt;br&gt;&lt;br&gt;-Not good bytecode support in PHP.  APC and others cant store cached code as separated &quot;static file&quot;. &lt;br&gt;&lt;br&gt;-Pythons has many bicycles for runing in web servers.&lt;br&gt;&lt;br&gt;-Require_once, Include_once, autoload is hell in PHP&lt;br&gt;&lt;br&gt;-Too late and asswide namespace support in PHP&lt;br&gt;&lt;br&gt;-No _private and _protected vars, methods in Python</description> <content:encoded><![CDATA[<p>Hi!,</p><p>let say my 5 cents&#8230;</p><p>-PHP has too crappy embedding system. I guess its need for <a
href="http://Zend.com" rel="nofollow">Zend.com</a>&#8230; PHP seems as not free for this reason.</p><p>-Python has poorly support for static variables, methods. This is not suitable.</p><p>-Pythons indentations is a hidden jail</p><p>-Not good bytecode support in PHP.  APC and others cant store cached code as separated &#8220;static file&#8221;.</p><p>-Pythons has many bicycles for runing in web servers.</p><p>-Require_once, Include_once, autoload is hell in PHP</p><p>-Too late and asswide namespace support in PHP</p><p>-No _private and _protected vars, methods in Python</p> ]]></content:encoded> </item> <item><title>By: Barton</title><link>http://www.hurricanesoftwares.com/php-vs-python-analysis/comment-page-1/#comment-732</link> <dc:creator>Barton</dc:creator> <pubDate>Thu, 15 Jan 2009 16:36:24 +0000</pubDate> <guid
isPermaLink="false">http://www.hurricanesoftwares.com/?p=247#comment-732</guid> <description>Long live Python!</description> <content:encoded><![CDATA[<p>Long live Python!</p> ]]></content:encoded> </item> <item><title>By: Ashish</title><link>http://www.hurricanesoftwares.com/php-vs-python-analysis/comment-page-1/#comment-731</link> <dc:creator>Ashish</dc:creator> <pubDate>Thu, 15 Jan 2009 13:34:45 +0000</pubDate> <guid
isPermaLink="false">http://www.hurricanesoftwares.com/?p=247#comment-731</guid> <description>Md5 implementation in PHP is fairly easy and nice but not as secure as of Python. Though, it may sound debatable. Generally programmers don&#039;t double check the security issues. Most security issues arise from programmers making assumptions when they shouldn’t.&lt;br&gt;&lt;br&gt;Python applications are rather complex and usually involve a lot better programmers who take care of the security issues. I am not saying that Python is more scalable than PHP but if you look at the big applications and new app&#039;s coming out you will notice how Python has delivered much scalable applications than PHP. Many of the Google applications are in Python. Why do you think they have chosen Python?</description> <content:encoded><![CDATA[<p>Md5 implementation in PHP is fairly easy and nice but not as secure as of Python. Though, it may sound debatable. Generally programmers don&#39;t double check the security issues. Most security issues arise from programmers making assumptions when they shouldn’t.</p><p>Python applications are rather complex and usually involve a lot better programmers who take care of the security issues. I am not saying that Python is more scalable than PHP but if you look at the big applications and new app&#39;s coming out you will notice how Python has delivered much scalable applications than PHP. Many of the Google applications are in Python. Why do you think they have chosen Python?</p> ]]></content:encoded> </item> <item><title>By: pcdinh</title><link>http://www.hurricanesoftwares.com/php-vs-python-analysis/comment-page-1/#comment-730</link> <dc:creator>pcdinh</dc:creator> <pubDate>Thu, 15 Jan 2009 12:05:28 +0000</pubDate> <guid
isPermaLink="false">http://www.hurricanesoftwares.com/?p=247#comment-730</guid> <description>Very funny performance comparison. md5 function is not part of a language. It is just an security-related function. Just like sha1() or hmac() or sha256(). It can not speak for a certain language&#039;s performance. If md5 performs poorly in PHP, you can say that md5 algorithm implementation in PHP is not good.&lt;br&gt;&lt;br&gt;You can compare language implementation performance by comparing a set of large enough and most used functions and language constructs.&lt;br&gt;&lt;br&gt;So what do you mean by &quot;tends to lead to much more scalable applications&quot;? Any case study?</description> <content:encoded><![CDATA[<p>Very funny performance comparison. md5 function is not part of a language. It is just an security-related function. Just like sha1() or hmac() or sha256(). It can not speak for a certain language&#39;s performance. If md5 performs poorly in PHP, you can say that md5 algorithm implementation in PHP is not good.</p><p>You can compare language implementation performance by comparing a set of large enough and most used functions and language constructs.</p><p>So what do you mean by &#8220;tends to lead to much more scalable applications&#8221;? Any case study?</p> ]]></content:encoded> </item> <item><title>By: harald</title><link>http://www.hurricanesoftwares.com/php-vs-python-analysis/comment-page-1/#comment-728</link> <dc:creator>harald</dc:creator> <pubDate>Wed, 14 Jan 2009 20:46:05 +0000</pubDate> <guid
isPermaLink="false">http://www.hurricanesoftwares.com/?p=247#comment-728</guid> <description>application / programming language level is not the only thing to consider, when thinking about scalability. there are much more important factors -- imo -- like: which environment you are running in, caching strategies, etc. &lt;br&gt;&lt;br&gt;a python application does not scale better, cause it&#039;s python, but maybe someone considered better strategies to build the application.</description> <content:encoded><![CDATA[<p>application / programming language level is not the only thing to consider, when thinking about scalability. there are much more important factors &#8212; imo &#8212; like: which environment you are running in, caching strategies, etc.</p><p>a python application does not scale better, cause it&#39;s python, but maybe someone considered better strategies to build the application.</p> ]]></content:encoded> </item> <item><title>By: PHP vs Python &#8212; Mana yang lebih baik? -- Review Teknologi Web dan Web Programming</title><link>http://www.hurricanesoftwares.com/php-vs-python-analysis/comment-page-1/#comment-508</link> <dc:creator>PHP vs Python &#8212; Mana yang lebih baik? -- Review Teknologi Web dan Web Programming</dc:creator> <pubDate>Wed, 26 Nov 2008 18:41:52 +0000</pubDate> <guid
isPermaLink="false">http://www.hurricanesoftwares.com/?p=247#comment-508</guid> <description>[...] : hurricanesoftwares     Tags: php, python, web [...]</description> <content:encoded><![CDATA[<p>[...] : hurricanesoftwares     Tags: php, python, web [...]</p> ]]></content:encoded> </item> <item><title>By: EllisGL</title><link>http://www.hurricanesoftwares.com/php-vs-python-analysis/comment-page-1/#comment-585</link> <dc:creator>EllisGL</dc:creator> <pubDate>Wed, 26 Nov 2008 13:31:36 +0000</pubDate> <guid
isPermaLink="false">http://www.hurricanesoftwares.com/?p=247#comment-585</guid> <description>Corrections for PHP:&lt;br&gt;1.) I&#039;ve never heard the term &quot;aliases&quot; used when talking about references.&lt;br&gt;2.) PHP can do method chaining.&lt;br&gt;3.) Easy multidimensional associative arrays&lt;br&gt;&lt;br&gt;I do believe that PHP need a good reworking thou to get around the too many chefs cooking a can of chicken noodle soup syndrome.</description> <content:encoded><![CDATA[<p>Corrections for PHP:<br
/>1.) I&#39;ve never heard the term &#8220;aliases&#8221; used when talking about references.<br
/>2.) PHP can do method chaining.<br
/>3.) Easy multidimensional associative arrays</p><p>I do believe that PHP need a good reworking thou to get around the too many chefs cooking a can of chicken noodle soup syndrome.</p> ]]></content:encoded> </item> <item><title>By: margesh</title><link>http://www.hurricanesoftwares.com/php-vs-python-analysis/comment-page-1/#comment-584</link> <dc:creator>margesh</dc:creator> <pubDate>Wed, 19 Nov 2008 06:12:37 +0000</pubDate> <guid
isPermaLink="false">http://www.hurricanesoftwares.com/?p=247#comment-584</guid> <description>Rico it depends on how you manage  and plan your application. If you need a scalable application then you would definitely try to opt for best language. &lt;br&gt;&lt;br&gt;Choosing language to get the job done isn&#039;t that easy and you need to be aware of every aspects of supported features of the programming language . &lt;br&gt;&lt;br&gt;I think you are simply coding in PHP or Python at very beginner level because only beginner can say words like you said above.</description> <content:encoded><![CDATA[<p>Rico it depends on how you manage  and plan your application. If you need a scalable application then you would definitely try to opt for best language.</p><p>Choosing language to get the job done isn&#39;t that easy and you need to be aware of every aspects of supported features of the programming language .</p><p>I think you are simply coding in PHP or Python at very beginner level because only beginner can say words like you said above.</p> ]]></content:encoded> </item> <item><title>By: Rico</title><link>http://www.hurricanesoftwares.com/php-vs-python-analysis/comment-page-1/#comment-583</link> <dc:creator>Rico</dc:creator> <pubDate>Tue, 18 Nov 2008 02:06:35 +0000</pubDate> <guid
isPermaLink="false">http://www.hurricanesoftwares.com/?p=247#comment-583</guid> <description>I find this article and articles like this a complete waste of time!&lt;br&gt;&lt;br&gt;PHP vs. Python!? Who cares!? &lt;br&gt;&lt;br&gt;Use the tools and programming language that gets the job done the fastest, easiest and most clean way.</description> <content:encoded><![CDATA[<p>I find this article and articles like this a complete waste of time!</p><p>PHP vs. Python!? Who cares!?</p><p>Use the tools and programming language that gets the job done the fastest, easiest and most clean way.</p> ]]></content:encoded> </item> <item><title>By: Marek</title><link>http://www.hurricanesoftwares.com/php-vs-python-analysis/comment-page-1/#comment-582</link> <dc:creator>Marek</dc:creator> <pubDate>Thu, 06 Nov 2008 15:45:05 +0000</pubDate> <guid
isPermaLink="false">http://www.hurricanesoftwares.com/?p=247#comment-582</guid> <description>One important fact: Python reads source code for the first time, parses it, optimizes and then store in to the file the byte code for next executions, whereas PHP parses it always, unless you&#039;ve installed eAccelerator, APC or another extension. I bet you&#039;ve benchmarked plain PHP, but then you&#039;re comparing PHP&#039;s read, parse, optimize, execute   versus  Python&#039;s just execute, which is clearly incomparable!!&lt;br&gt;Please, try to install one of them, repeat tests and submit them again, just to be fair ;-)&lt;br&gt;&lt;br&gt;And several other hints: &lt;br&gt;- PHP namespaces are coming already to version 5.3&lt;br&gt;- upward compatibility you mention as Python&#039;s highlight is myth; read Python 3 aka 3000 planned changes and you&#039;ll learn there is planned to break many existing APIs</description> <content:encoded><![CDATA[<p>One important fact: Python reads source code for the first time, parses it, optimizes and then store in to the file the byte code for next executions, whereas PHP parses it always, unless you&#39;ve installed eAccelerator, APC or another extension. I bet you&#39;ve benchmarked plain PHP, but then you&#39;re comparing PHP&#39;s read, parse, optimize, execute   versus  Python&#39;s just execute, which is clearly incomparable!!<br
/>Please, try to install one of them, repeat tests and submit them again, just to be fair <img
src='http://www.hurricanesoftwares.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /></p><p>And several other hints: <br
/>- PHP namespaces are coming already to version 5.3<br
/>- upward compatibility you mention as Python&#39;s highlight is myth; read Python 3 aka 3000 planned changes and you&#39;ll learn there is planned to break many existing APIs</p> ]]></content:encoded> </item> <item><title>By: kelvin</title><link>http://www.hurricanesoftwares.com/php-vs-python-analysis/comment-page-1/#comment-581</link> <dc:creator>kelvin</dc:creator> <pubDate>Thu, 06 Nov 2008 14:38:39 +0000</pubDate> <guid
isPermaLink="false">http://www.hurricanesoftwares.com/?p=247#comment-581</guid> <description>&quot;Another difference is that PHP is embedded in the web server, whereas Python web applications can either be embedded in the web server like PHP or run in a separate process.&quot;&lt;br&gt;&lt;br&gt;This is wrong, PHP can run as embedded, CGI or seperate process.</description> <content:encoded><![CDATA[<p>&#8220;Another difference is that PHP is embedded in the web server, whereas Python web applications can either be embedded in the web server like PHP or run in a separate process.&#8221;</p><p>This is wrong, PHP can run as embedded, CGI or seperate process.</p> ]]></content:encoded> </item> <item><title>By: MikeRT</title><link>http://www.hurricanesoftwares.com/php-vs-python-analysis/comment-page-1/#comment-580</link> <dc:creator>MikeRT</dc:creator> <pubDate>Thu, 06 Nov 2008 14:34:32 +0000</pubDate> <guid
isPermaLink="false">http://www.hurricanesoftwares.com/?p=247#comment-580</guid> <description>You can also download Jython and use it to build Servlets and Portlets. There might even be experimental JSP support for it now. To test it out as a Servlet, make sure that you use the jython compiler to build it into Java classes and that you put the Jython dependencies into Tomcat&#039;s shared library directory.</description> <content:encoded><![CDATA[<p>You can also download Jython and use it to build Servlets and Portlets. There might even be experimental JSP support for it now. To test it out as a Servlet, make sure that you use the jython compiler to build it into Java classes and that you put the Jython dependencies into Tomcat&#39;s shared library directory.</p> ]]></content:encoded> </item> <item><title>By: Hurricane Software: PHP vs Python: Analysis : Dragonfly Networks</title><link>http://www.hurricanesoftwares.com/php-vs-python-analysis/comment-page-1/#comment-499</link> <dc:creator>Hurricane Software: PHP vs Python: Analysis : Dragonfly Networks</dc:creator> <pubDate>Thu, 06 Nov 2008 11:23:36 +0000</pubDate> <guid
isPermaLink="false">http://www.hurricanesoftwares.com/?p=247#comment-499</guid> <description>[...] the Hurricane Software website they&#8217;ve done a comparison between PHP and Python judging them based on things like feature set, community and [...]</description> <content:encoded><![CDATA[<p>[...] the Hurricane Software website they&#8217;ve done a comparison between PHP and Python judging them based on things like feature set, community and [...]</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 1/24 queries in 0.092 seconds using disk: basic
Object Caching 644/647 objects using disk: basic

Served from: www.hurricanesoftwares.com @ 2012-02-08 04:21:26 -->
