[BangPypers] Python Training in Bangalore

2009-09-10 Thread Ganesh H. Kumar - QA
Greetings, Do you conduct python training, either open programs or in house sessions? Am looking for some good python trainers and came across your reference through a google search. Hence this mail. Incase this has caused any inconvenience to you, please ignore and sorry for that.

Re: [BangPypers] Python Training in Bangalore

2009-09-10 Thread JAGANADH G
On Mon, Sep 7, 2009 at 12:12 PM, Ganesh H. Kumar - QA ganeshkuma...@ccpu.com wrote: Greetings, Do you conduct python training, either open programs or in house sessions? Am looking for some good python trainers and came across your reference through a google search. Hence this mail.

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

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] 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 ___

Re: [BangPypers] HTML Parsing in python

2009-09-10 Thread Anand Chitipothu
2009/9/10 Puneet Aggarwal look4pun...@gmail.com: 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

Re: [BangPypers] HTML Parsing in python

2009-09-10 Thread Baiju M
On Thu, Sep 10, 2009 at 2:29 PM, Puneet Aggarwallook4pun...@gmail.com 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

Re: [BangPypers] HTML Parsing in python

2009-09-10 Thread Noufal Ibrahim
On Thu, Sep 10, 2009 at 3:41 PM, Anand Chitipothu anandol...@gmail.com wrote: 2009/9/10 Puneet Aggarwal look4pun...@gmail.com: 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

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

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

Re: [BangPypers] HTML Parsing in python

2009-09-10 Thread S.Ramaswamy
On Thu, Sep 10, 2009 at 2:29 PM, Puneet Aggarwal look4pun...@gmail.comwrote: 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

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.

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 b.gh...@gmail.comwrote: Can anyone suggest me a good library for html parsing in python ? I googled a found few

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 b.gh...@gmail.comwrote: Can anyone suggest me

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 dhananjay.n...@gmail.comwrote: Do you require tolerance

[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

[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

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 dg288_m...@yahoo.co.in 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

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

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 dg288_m...@yahoo.co.in 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

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 nou...@gmail.com wrote: From: Noufal Ibrahim nou...@gmail.com Subject: Re: [BangPypers] How to send 1 GB Zip file to some remote machine using HTTP/HTTPS? To: Bangalore Python Users Group - India bangpypers@python.org Date:

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 dg288_m...@yahoo.co.in 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

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 nou...@gmail.com wrote: On Thu, Sep 10, 2009 at 11:24 PM, deepak gupta dg288_m...@yahoo.co.in 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

Re: [BangPypers] google app engine and python

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

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 all

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 unknown

Re: [BangPypers] HTML Parsing in python

2009-09-10 Thread srid
On Thu, Sep 10, 2009 at 6:37 AM, Baishampayan Ghose b.gh...@gm 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: