Re: [BangPypers] google app engine and python

2009-09-10 Thread Kenneth Gonsalves
On Thursday 10 Sep 2009 7:44:07 am Brian Le Blanc wrote: > I am very interested in developing applications for google app engine. > Python and Java are currently supported languages. > Has anyone created apps for this platform yet? Which Bangalore > companies will accept outsourced development pr

Re: [BangPypers] python-sap webservices

2009-09-10 Thread Kenneth Gonsalves
On Thursday 10 Sep 2009 10:02:45 am sudhakar s wrote: > Hi, This is sudhakar, i am using python frame work what is python frame work? -- regards Kenneth Gonsalves Associate NRC-FOSS http://nrcfosshelpline.in/web/ ___ BangPypers mailing list BangPypers@

[BangPypers] HTML Parsing in python

2009-09-10 Thread Puneet Aggarwal
Hi BangPypers, Can anyone suggest me a good library for html parsing in python ? I googled a found few libararies BeautifulSoup, HTMLParser, SGMLParser etc. Can anyone suggest me which should I go for from your experience. Thanks, Puneet ___ BangPyper

Re: [BangPypers] HTML Parsing in python

2009-09-10 Thread Anand Chitipothu
2009/9/10 Puneet Aggarwal : > Hi BangPypers, > > Can anyone suggest me a good library for html parsing in python ? > I googled a found few libararies BeautifulSoup, HTMLParser, SGMLParser etc. > > Can anyone suggest me which should I go for from your experience. I recommend BeautifulSoup. Anand _

Re: [BangPypers] HTML Parsing in python

2009-09-10 Thread Baiju M
On Thu, Sep 10, 2009 at 2:29 PM, Puneet Aggarwal wrote: > Hi BangPypers, > > Can anyone suggest me a good library for html parsing in python ? http://code.google.com/p/html5lib/ -- Baiju M ___ BangPypers mailing list BangPypers@python.org http://mail.py

Re: [BangPypers] HTML Parsing in python

2009-09-10 Thread Noufal Ibrahim
On Thu, Sep 10, 2009 at 3:41 PM, Anand Chitipothu wrote: > 2009/9/10 Puneet Aggarwal : >> Hi BangPypers, >> >> Can anyone suggest me a good library for html parsing in python ? >> I googled a found few libararies BeautifulSoup, HTMLParser, SGMLParser etc. >> >> Can anyone suggest me which should I

Re: [BangPypers] HTML Parsing in python

2009-09-10 Thread Ramkumar R
> or use cElementTree (the ElementTree implementation in C). ElementTree is an XML parser. Forget that I mentioned it if you're only going to be parsing HTML. ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangp

Re: [BangPypers] HTML Parsing in python

2009-09-10 Thread Ramkumar R
> +1 Beautiful Soup The author is no longer interested in maintaining BeautifulSoup (see http://www.crummy.com/software/BeautifulSoup/3.1-problems.html). The BeautifulSoup port to Python 3.x is pretty terrible, as it's based on the error intolerant HTMLParser. While it's a fantastic library for be

Re: [BangPypers] HTML Parsing in python

2009-09-10 Thread S.Ramaswamy
On Thu, Sep 10, 2009 at 2:29 PM, Puneet Aggarwal wrote: > Hi BangPypers, > > Can anyone suggest me a good library for html parsing in python ? > I googled a found few libararies BeautifulSoup, HTMLParser, SGMLParser > etc. > > Can anyone suggest me which should I go for from your experience. > >

Re: [BangPypers] HTML Parsing in python

2009-09-10 Thread Baishampayan Ghose
> Can anyone suggest me a good library for html parsing in python ? > I googled a found few libararies BeautifulSoup, HTMLParser, SGMLParser etc. > > Can anyone suggest me which should I go for from your experience. BeautifulSoup was OK, but now it's broken. Use lxml, it's very good. http://codes

Re: [BangPypers] HTML Parsing in python

2009-09-10 Thread Dhananjay Nene
Do you require tolerance for non well formed xml / html ? If y, you may consider sgmlop http://effbot.org/zone/sgmlop-index.htm On Thu, Sep 10, 2009 at 7:07 PM, Baishampayan Ghose wrote: > > Can anyone suggest me a good library for html parsing in python ? > > I googled a found few libararies Bea

Re: [BangPypers] HTML Parsing in python

2009-09-10 Thread Puneet Aggarwal
Thanks all for the suggestions. I think I will start with BeautifulSoup (3.0.7a) and will experiment with other suggested libs if it does not fit into my requirement or if I face issues with this. On Thu, Sep 10, 2009 at 7:07 PM, Baishampayan Ghose wrote: > > Can anyone suggest me a good library

Re: [BangPypers] HTML Parsing in python

2009-09-10 Thread Puneet Aggarwal
Hi Dhananjay, My requirement is simple. I need to extract information from a page. But the pages can be malformed html or it can be any junk html. So the tolerance required. Thanks, Puneet On Thu, Sep 10, 2009 at 7:33 PM, Dhananjay Nene wrote: > Do you require tolerance for non well formed xml

Re: [BangPypers] google app engine and python

2009-09-10 Thread Abhishek Mishra
I had done a very tiny tryout of appengine last week - http://tastypasses.appspot.com/ its a very small script, that does nothing more than processing some get requests and uses templates... I'm yet to try out many other features like datastore, xmpp etc... I found O'Reilly's 'Using Google App Engi

[BangPypers] [OT] Guido's Tweet on Top Posting

2009-09-10 Thread S.Ramaswamy
"Top-posting complaints is the old timers trying to assert their power over the newer generation who takes everything for granted." http://twitter.com/gvanrossum/status/2403974538 ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/m

Re: [BangPypers] google app engine and python

2009-09-10 Thread Pradeep Gowda
On Thu, Sep 10, 2009 at 10:39 AM, Abhishek Mishra wrote: > Lets see what cool apps bangpypers come up with :) I have built a blogging engine: http://teh.appspot.com code: http://github.com/btbytes/teh/tree a "Djangosites.com" clone: http://www.zopesites.org code: http://github.com/btbytes/gappsit

[BangPypers] How to send 1 GB Zip file to some remote machine using HTTP/HTTPS?

2009-09-10 Thread deepak gupta
Hi All,   How to send 1 GB Zip file to some remote machine using HTTP/HTTPS?   As of now : I am running a http listner in to remote machine. I want to copy a file from local system to the remote machine where my HTTP/HTTPS Listner is running. Currently i am comressing the file, then reading the fi

Re: [BangPypers] How to send 1 GB Zip file to some remote machine using HTTP/HTTPS?

2009-09-10 Thread Noufal Ibrahim
On Thu, Sep 10, 2009 at 11:01 PM, deepak gupta wrote: > > [..] > Please mention if i can do it by using some other protocol. > > [..] Perhaps you should consider something more tuned to handle file transfers like rsync or even just sftp/scp. Is there a reason you *have* to use HTTP? -- ~noufa

Re: [BangPypers] How to send 1 GB Zip file to some remote machine using HTTP/HTTPS?

2009-09-10 Thread deepak gupta
Hi Noufal,   Thanks for your quick reply. Actually at remote site we can not open the other ports except 443. thats why i am using HTTPS for this. I don't know exaxtly, how to use rsync or even just sftp/scp or how to create the listner for these.   Thanks, Deepak   --- On Thu, 10/9/09, Noufal I

Re: [BangPypers] How to send 1 GB Zip file to some remote machine using HTTP/HTTPS?

2009-09-10 Thread Noufal Ibrahim
On Thu, Sep 10, 2009 at 11:16 PM, deepak gupta wrote: > > Hi Noufal, > > Thanks for your quick reply. > Actually at remote site we can not open the other ports except 443. > thats why i am using HTTPS for this. > I don't know exaxtly, how to use rsync or even just sftp/scp or how to create > the

Re: [BangPypers] How to send 1 GB Zip file to some remote machine using HTTP/HTTPS?

2009-09-10 Thread deepak gupta
Yes it is return in python. --- On Thu, 10/9/09, Noufal Ibrahim wrote: From: Noufal Ibrahim Subject: Re: [BangPypers] How to send 1 GB Zip file to some remote machine using HTTP/HTTPS? To: "Bangalore Python Users Group - India" Date: Thursday, 10 September, 2009, 11:19 PM On Thu, Sep 10, 2

Re: [BangPypers] How to send 1 GB Zip file to some remote machine using HTTP/HTTPS?

2009-09-10 Thread Noufal Ibrahim
On Thu, Sep 10, 2009 at 11:24 PM, deepak gupta wrote: > > Yes it is return in python.[..] I expect it will be slow then. If you can install an rsync server on the remote end, it would be nice. Then you can just rsync the files over. If you can't do that, one option is to split your compressed fi

Re: [BangPypers] How to send 1 GB Zip file to some remote machine using HTTP/HTTPS?

2009-09-10 Thread Sriram Narayanan
On Thu, Sep 10, 2009 at 11:50 PM, Noufal Ibrahim wrote: > On Thu, Sep 10, 2009 at 11:24 PM, deepak gupta wrote: >> >> Yes it is return in python.[..] > > I expect it will be slow then. If you can install an rsync server on > the remote end, it would be nice. Then you can just rsync the files > ov

[BangPypers] Facebook open source a python framework

2009-09-10 Thread Vivek Khurana
Hi! Face book open sourced Tornado, a python based framework which is the power horse for friend feed. Official news and details here http://developers.facebook.com/news.php?blog=1&story=301 regards Vivek -- The hidden harmony is better than the obvious!! _

Re: [BangPypers] google app engine and python

2009-09-10 Thread srid
On Thu, Sep 10, 2009 at 9:15 AM, Pradeep Gowda wrote: > On Thu, Sep 10, 2009 at 10:39 AM, Abhishek Mishra wrote: >> Lets see what cool apps bangpypers come up with :) > > I have built a blogging engine: http://teh.appspot.com code: > http://github.com/btbytes/teh/tree > a "Djangosites.com" clone:

Re: [BangPypers] [OT] Guido's Tweet on Top Posting

2009-09-10 Thread srid
>From Wikipedia: """ Objections to top-posting on newsgroups, as a rule, seem to come from persons who first went online in the earlier days of Usenet, and in communities that date to Usenet's early days. Until the mid-90s, top-posting was unknown and interleaved posting an obvious standard that a

Re: [BangPypers] [OT] Guido's Tweet on Top Posting

2009-09-10 Thread Kenneth Gonsalves
On Friday 11 Sep 2009 10:54:27 am srid wrote: > >From Wikipedia: > > """ > Objections to top-posting on newsgroups, as a rule, seem to come from > persons who first went online in the earlier days of Usenet, and in > communities that date to Usenet's early days. Until the mid-90s, > top-posting was

Re: [BangPypers] HTML Parsing in python

2009-09-10 Thread srid
On Thu, Sep 10, 2009 at 6:37 AM, Baishampayan Ghose BeautifulSoup was OK, but now it's broken. Use lxml, it's very good. > > http://codespeak.net/lxml/ IanB has an interesting blog post on using lxml to parse HTML: http://blog.ianbicking.org/2008/12/10/lxml-an-underappreciated-web-scraping-li

Re: [BangPypers] [OT] Guido's Tweet on Top Posting

2009-09-10 Thread Noufal Ibrahim
Why? On Fri, Sep 11, 2009 at 11:00 AM, Kenneth Gonsalves wrote: > On Friday 11 Sep 2009 10:54:27 am srid wrote: >> >From Wikipedia: >> >> """ >> Objections to top-posting on newsgroups, as a rule, seem to come from >> persons who first went online in the earlier days of Usenet, and in >> communit

Re: [BangPypers] [OT] Guido's Tweet on Top Posting

2009-09-10 Thread Kenneth Gonsalves
On Friday 11 Sep 2009 11:09:52 am Noufal Ibrahim wrote: > Why? do you mean why does wikipedia contains BS? or why do I think that the quotation is BS? -- regards Kenneth Gonsalves Associate NRC-FOSS http://nrcfosshelpline.in/web/ ___ BangPypers mailing

Re: [BangPypers] [OT] Guido's Tweet on Top Posting

2009-09-10 Thread Noufal Ibrahim
Why do you consider the quotation to be BS? I assume from your first question that you *do* consider it to be BS. On Fri, Sep 11, 2009 at 11:52 AM, Kenneth Gonsalves wrote: > On Friday 11 Sep 2009 11:09:52 am Noufal Ibrahim wrote: >> Why? > > do you mean why does wikipedia contains BS? or why do