Python… my new Perl…

So I have been playing around with python more and more lately and I came to the conclusion that it is my new perl…For those quick scripts you want to do and use a CPAN module… well there should be a python library for that… and you can install it by pip! which is to my experience more simple and convenient than cpan.

The thing Is I learn a very good trick digging around the web… So you can start a webserver using python at the reach of a command line…

  • Python 2.x:

    python -m SimpleHTTPServer
  • Python 3.x:

    python -m http.server

That is it… later on I will jump into more details for DJango, or continue with the description of the Spring MVC Boostrap project…

el_Avena off…