Re: [BangPypers] Help in integrating AWS Pinpoint with django project.

2020-07-15 Thread Kumar Anirudha
Hi Sudheesh, On Tue, 14 Jul 2020 at 22:54, sudheesh ks wrote: > Hi Guys > Does anybody have experience in integrating AWS Pinpoint to Django/Flask > applications. > Documentations leads me from one page to another. > > I tried by including aws amplify library from a cdn first. It did not > work.

Re: [BangPypers] help

2016-11-22 Thread Chillar Anand
There is no need of password to unsubscribe. Just visit https://mail.python.org/mailman/listinfo/bangpypers and you can unsubscribe by your email. ___ BangPypers mailing list BangPypers@python.org https://mail.python.org/mailman/listinfo/bangpypers

Re: [BangPypers] help needed

2015-08-13 Thread Jaysinh Shukla
Hello, While I was learning Python, I Googled and found this . It contains many python starting projects. Hope it will be helpful to you. On Thursday 06 August 2015 06:34 PM, Rajat Jain wrote: Hello everyone; I'm a student interested in getting so

Re: [BangPypers] help needed

2015-08-06 Thread Senthil Kumaran
On Thu, Aug 6, 2015 at 6:04 AM, Rajat Jain wrote: > I was wondering if anyone could suggest me some projects ,resources or some > bugs which are beginner friendly. > Would you like to attempt to write a sudoku solver in python? Start with understanding the algorithm, write it in english and then

Re: [BangPypers] Help With Python

2014-06-01 Thread Mandar Vaze / मंदार वझे
> Please suggest me a suitable framework. > Web2py Also suggest me resources to learn & some projects to get involved. > http://web2py.com/init/default/documentation http://web2py.com/book -Mandar ___ BangPypers mailing list BangPypers@python.org http

Re: [BangPypers] Help Required with understanding Python Import

2013-09-12 Thread Saager Mhatre
On Tue, Sep 10, 2013 at 3:39 PM, konark modi wrote: > Hi Jagan, > > This should be of your interest : > http://pyvideo.org/video/1707/how-import-works Jagan, This makes for an interesting read too => http://lucumr.pocoo.org/2009/7/24/singletons-and-their-problems-in-python/ - d __

Re: [BangPypers] Help Required with understanding Python Import

2013-09-10 Thread HUSSAIN BOHRA
You can probably have a look in the below link - http://docs.python.org/2/library/functions.html#__import__ On Tue, Sep 10, 2013 at 3:36 PM, Vaikuntham Jagannath < vjagannat...@gmail.com> wrote: > Hi, > > I am trying to dynamically import classes & create instances of those > classes. > > Can y

Re: [BangPypers] Help Required with understanding Python Import

2013-09-10 Thread konark modi
Hi Jagan, This should be of your interest : http://pyvideo.org/video/1707/how-import-works Regards Konark On Tue, Sep 10, 2013 at 3:36 PM, Vaikuntham Jagannath < vjagannat...@gmail.com> wrote: > Hi, > > I am trying to dynamically import classes & create instances of those > classes. > > Can yo

Re: [BangPypers] [HELP] QUERIES RELATED TO PYTHON

2013-04-20 Thread Gora Mohanty
On 21 April 2013 00:31, hiharry danny wrote: > I have Python 2.5.4 installed on windows platform ..(win xp) ...and in the > installation folder there is a folder named Tcl(Tool Command Language) > which contains subfolders like Tk, Tix etc ..the version of tcl is 8.4 .The > default gui standard of

Re: [BangPypers] help to understand this code

2013-02-25 Thread Gopalakrishnan Subramani
I still recommend you go through the fundamentals of Python, I don't see any hurry in learning something new. Starts with printing "hello world", then conditions, loops, functions, Class, Objects. You don't need more than 2 weeks for this homework. Couple of late nights and weekends help you, It is

Re: [BangPypers] help to understand this code

2013-02-25 Thread T S KAMATH
My Apologies for yesterdays post.. It was click "send" instead of "draft".. Moderator pls "del" the earlier post. I am no developer nor a hardcore programer. I just use open Source to find "work around" to issues and or to automate. all my stuff is open source and free to use. Hence pls excuse

Re: [BangPypers] help to understand this code..

2013-02-25 Thread Srikanth Kamath
Oops Regards Srikanth Kamath, BDM SAARC Sent from my Mobil Device ~ I unable to access emails from laptop, maybe in meeting or ~~travelling hence response will be delayed, thanks for understanding and cooperation. On 25-Feb-2013, at 8:14 PM, Gora Mohanty wrote: On 25 February 2013 19:41, T

Re: [BangPypers] help to understand this code..

2013-02-25 Thread Gora Mohanty
On 25 February 2013 19:41, T S KAMATH wrote: > Hi, > > I have no cue on php and its usage.. i am stuck.. I just wanted to list all > the files and dir of the folder on webpage and unfortunately the web-server > is set up for php.. [...] So, why are you asking here? It is off-topic, and you woul

Re: [BangPypers] Help in understanding Hadoop with python

2012-10-17 Thread JAGANADH G
On Wed, Oct 10, 2012 at 11:41 AM, vijay wrote: > Hi , >I am planing to use hadoop for processing millions record text file for > my project .Am looking for suggestion on hadoop with python programs. >If any one has used do let me know. > Hi You have following options in Hadoop + Pytho

Re: [BangPypers] Help in understanding Hadoop with python

2012-10-17 Thread vijay
Yoganand,     Thanks for helping . Will give try on this . With Thanks Vijay From: Yoganand Anandaraju To: vijay ; Bangalore Python Users Group - India Sent: Wednesday, 10 October 2012 12:01 PM Subject: Re: [BangPypers] Help in understanding Hadoop with

Re: [BangPypers] Help in understanding Hadoop with python

2012-10-09 Thread Yoganand Anandaraju
You can write python map-reduce for hadoop by using HadoopStreaming. Take a look at this example http://www.michael-noll.com/tutorials/writing-an-hadoop-mapreduce-program-in-python/ . For processing Bigdata, I suggest take a look at Disco Framework http://discoproject.org/ . I felt it was muc

Re: [BangPypers] Help required to design classes

2012-10-09 Thread Saju M
Hi Anand, Thanks, let me try. Regards Saju Madhavan +91 09535134654 On Tue, Oct 9, 2012 at 3:00 PM, Anand Chitipothu wrote: > > So, can i do like this ??? > > > > class BMixin: > > > > class B(BMixin, A): > > > > class Q(BMixin, P): > > Yes. But adding the mixin class at the end might be bett

Re: [BangPypers] Help required to design classes

2012-10-09 Thread Anand Chitipothu
> So, can i do like this ??? > > class BMixin: > > class B(BMixin, A): > > class Q(BMixin, P): Yes. But adding the mixin class at the end might be better. class B(A, BMixin): ... class Q(P, BMixin): ... Anand ___ BangPypers mailing list BangPype

Re: [BangPypers] Help required to design classes

2012-10-09 Thread Saju M
Hi Anand, Sorry, I made a mistake in question Note: constructor of class "A" and "P" doing different operations on input. You are telling like this , right? class BMixin: class B(BMixin): class Q(BMixin): One more thing, class "B" should contain methods defined in class "A". class "Q" should

Re: [BangPypers] Help required to design classes

2012-10-09 Thread Anand Chitipothu
On Tue, Oct 9, 2012 at 2:31 PM, Saju M wrote: > Hi, > > > I have two classes "A" and "B" > > > class A: > def __init__(self, input): > //do something on input > > > > class B(A): > def __init__(self, input): > A.__init__(self, input) > //do something > > > Then, I w

Re: [BangPypers] help needed to in Client Cookie module

2012-09-22 Thread Deepu Thomas Philip
> -suprabha > > > > > > On Thu, Sep 20, 2012 at 12:12 PM, Yoganand Anandaraju >wrote: > > > >> Do you get any errors when downloading the pdf? > >> > >> - Original Message ----- > >> From: suprabha ekka > >> Sent: 09/20/12

Re: [BangPypers] help is requested in connection with Ocropus project(which is pure python built)

2012-09-21 Thread Ramchandra Apte
sers Group - India > Subject: Re: [BangPypers] help is requested in connection with Ocropus > project(which is pure python built) > > Can you tell where exactly you are struggling with the install. I would > like to be part of the project, let me know on how can I contribute. &

Re: [BangPypers] help is requested in connection with Ocropus project(which is pure python built)

2012-09-21 Thread Yoganand Anandaraju
I manged to successfully install and run the tests after minor changes in the code. I am using Ubuntu 11.10. - Original Message - From: Yoganand Anandaraju Sent: 09/21/12 04:05 PM To: Bangalore Python Users Group - India Subject: Re: [BangPypers] help is requested in connection with

Re: [BangPypers] help is requested in connection with Ocropus project(which is pure python built)

2012-09-21 Thread Yoganand Anandaraju
Can you tell where exactly you are struggling with the install. I would like to be part of the project, let me know on how can I contribute. Regards, Yoganand - Original Message - From: Sriranga(78yrsold) Sent: 09/21/12 01:58 PM To: bangpypers@python.org Subject: [BangPypers] help is re

Re: [BangPypers] help needed to in Client Cookie module

2012-09-20 Thread suprabha ekka
PM, Yoganand Anandaraju wrote: > >> Do you get any errors when downloading the pdf? >> >> - Original Message - >> From: suprabha ekka >> Sent: 09/20/12 11:01 AM >> To: Bangalore Python Users Group - India >> Subject: Re: [BangPypers] help

Re: [BangPypers] help needed to in Client Cookie module

2012-09-20 Thread suprabha ekka
- Original Message - > From: suprabha ekka > Sent: 09/20/12 11:01 AM > To: Bangalore Python Users Group - India > Subject: Re: [BangPypers] help needed to in Client Cookie module > > I am providing the complete code import urllib2 import urllib import > ClientCoo

Re: [BangPypers] help needed to in Client Cookie module

2012-09-19 Thread Yoganand Anandaraju
Do you get any errors when downloading the pdf? - Original Message - From: suprabha ekka Sent: 09/20/12 11:01 AM To: Bangalore Python Users Group - India Subject: Re: [BangPypers] help needed to in Client Cookie module I am providing the complete code import urllib2 import urllib

Re: [BangPypers] help needed to in Client Cookie module

2012-09-19 Thread suprabha ekka
I am providing the complete code import urllib2 import urllib import ClientCookie import ClientForm import sys cj = ClientCookie.LWPCookieJar() opener = ClientCookie.build_opener(urllib2.HTTPSHandler(), ClientCookie.HTTPCookieProcessor(cj)) ClientCookie.install_opener(opener) # input-type val

Re: [BangPypers] help needed to in Client Cookie module

2012-09-19 Thread Ramchandra Apte
On 19 September 2012 16:09, suprabha ekka wrote: > Hi , > > I wanted to download a file from a content url . The content of the file is > pdf/doc/docx/.xls/ any ms supported file. > The simple text file i am able to download but i am unbal eto download any > other file. > The snippet of the code

Re: [BangPypers] Help On Paramiko

2012-06-19 Thread satyaakam goswami
> > o/p > ['UNIX shell commands cannot be executed using this account.\n'] > > Any suggestions? > > last time i had such a requirement it started just like you into writing something , then i did a quick web search before starting and found http://code.google.com/p/sshpt/ which served all our requ

Re: [BangPypers] Help On Paramiko

2012-06-19 Thread vijay
Can you try to add this step(after missing_host_key_policy()) for public private key between two machine you want to run. paramiko.RSAKey.from_private_key_file() this is what helped me solved issue what i had with communication between machines. Hope this helps you With Thanks VIjay _

Re: [BangPypers] Help On Paramiko

2012-06-19 Thread Guru
Refer this site you may get some useful information http://segfault.in/2010/03/paramiko-ssh-and-sftp-with-python/ On Tue, Jun 19, 2012 at 12:00 PM, Noufal Ibrahim wrote: > > Fabric is a library built on paramiko that gives you abstractions so > that you don't have to worry about things at such a

Re: [BangPypers] Help On Paramiko

2012-06-18 Thread Noufal Ibrahim
Fabric is a library built on paramiko that gives you abstractions so that you don't have to worry about things at such a fine grained level. Perhaps you should try using that. writes: > Howdy All, > > I am trying to use paramiko to automate logging in to remote unix machines > and executing so

Re: [BangPypers] Help pyqt learning guide.

2012-04-01 Thread Sateesh Kumar
On Fri, Mar 30, 2012 at 3:04 PM, Ganesh Kumar wrote: > Hi guys, > > I am new to pyqt. please suggest any good material to understand pyqt. > please guide me. > A very good book for getting started with PyQt is 'Rapid GUI Programming with Python ant Qt' by Mark Summerfield . Unfortunately there i

Re: [BangPypers] Help pyqt learning guide.

2012-03-30 Thread Senthil Kumaran
Hello Ganesh, The best way to learn GUI development is to develop a simple application. The tutorials can assist you - http://zetcode.com/tutorials/pyqt4/ But set yourself a target - like a GUI application using which you can post to your blog. Try doing this and you should be in the right path.

Re: [BangPypers] help needed to understand an error message.

2012-03-23 Thread स्वक्ष
On Sat, Mar 24, 2012 at 03:10, Aloke Ghosh wrote: > Hi, > I am learning Python and do not have programming experience. > I was following an exercise from > http://learnpythonthehardway.org/book/ex2.html > and made a mistake in entry : > > *Print"I like typing this."* > > and got the following erro

Re: [BangPypers] Help: How to install beautiful soup in Python

2012-01-24 Thread Syed Mushtaq
pip install BeautifulSoup On Wed, Jan 25, 2012 at 10:52 AM, Sujit Ghosal wrote: > Hi Vishnu, > The easy way for you would be to use setup-tools and issue > easy_install or else you can download the corresponding > BeautifulSoup module zip file for your version of Python and install it > thr

Re: [BangPypers] Help: How to install beautiful soup in Python

2012-01-24 Thread Sujit Ghosal
Hi Vishnu, The easy way for you would be to use setup-tools and issue easy_install or else you can download the corresponding BeautifulSoup module zip file for your version of Python and install it through the command line like this: "C:\python32\python setup.py install" You can check this o

Re: [BangPypers] Help Needed for an NGO based Project

2011-01-18 Thread Kenneth Gonsalves
On Wed, 2011-01-19 at 11:17 +0530, vikas ruhil wrote: > can anybody join me on chat or facebook to giving help me related to > sap > project beacuse they need help .in realted to django-registration > to > help them? come to #django on IRC - we will sort out your problems in a jiffy -- regar

Re: [BangPypers] Help Needed for an NGO based Project

2011-01-18 Thread vikas ruhil
can anybody join me on chat or facebook to giving help me related to sap project beacuse they need help .in realted to django-registration to help them? On Wed, Jan 19, 2011 at 11:13 AM, vikas ruhil wrote: > i am also facing problem in installation i try it with both window > ,Linux..

Re: [BangPypers] Help Needed for an NGO based Project

2011-01-18 Thread vikas ruhil
i am also facing problem in installation i try it with both window ,Linux.. now i need help ,or might use my mind to solve problem ..django registration task is not difficult but installation is On Wed, Jan 19, 2011 at 11:04 AM, Kenneth Gonsalves wrote: > On Tue, 2011-01-18 at 20:39 +

Re: [BangPypers] Help Needed for an NGO based Project

2011-01-18 Thread Kenneth Gonsalves
On Tue, 2011-01-18 at 20:39 +0530, Mandar Vaze / मंदार वझे wrote: > > install django registration > > > > Is there something similar for pylons ? no idea > Does Django registration module work with pylons (easily?) that I doubt -- regards Kenneth Gonsalves

Re: [BangPypers] Help Needed for an NGO based Project

2011-01-18 Thread Mandar Vaze / मंदार वझे
On Tue, Jan 18, 2011 at 4:43 PM, Kenneth Gonsalves wrote: > On Tue, 2011-01-18 at 15:48 +0530, Young J wrote: > > I have registered with an email id and an email containing activation > > link > > must be sent to the before said email id. Once the link is clicked the > > user > > status should be

Re: [BangPypers] Help Needed for an NGO based Project

2011-01-18 Thread Kenneth Gonsalves
On Tue, 2011-01-18 at 17:02 +0530, vikas ruhil wrote: > i facing problem in django installation i use this type code help me? > > rm ~/webapps/django/lib/python2.5/django_registration-0.7-py2.5.egg > > https://bitbucket.org/ubernostrum/django-registration/wiki/Home -- regards Kenneth Gonsalves

Re: [BangPypers] Help Needed for an NGO based Project

2011-01-18 Thread vikas ruhil
i facing problem in django installation i use this type code help me? rm ~/webapps/django/lib/python2.5/django_registration-0.7-py2.5.egg On Tue, Jan 18, 2011 at 4:43 PM, Kenneth Gonsalves wrote: > > install django registration ___ BangPypers mailing

Re: [BangPypers] Help Needed for an NGO based Project

2011-01-18 Thread Kenneth Gonsalves
On Tue, 2011-01-18 at 15:48 +0530, Young J wrote: > I have registered with an email id and an email containing activation > link > must be sent to the before said email id. Once the link is clicked the > user > status should be changed to active. > Please help. install django registration -- reg

Re: [BangPypers] Help needed on reviewing my presentation for pycon.

2010-07-08 Thread Anand Balachandran Pillai
Hi Shiv, On Sat, Jun 26, 2010 at 8:12 PM, Shiv Shankar wrote: > Guys, > > The below mentioned is an overview of the contents included in the > presentation I would like to present in this years pycon. Could you guys > please look through it and let me know if you will get benefited from such > a

Re: [BangPypers] Help needed on reviewing my presentation for pycon.

2010-06-28 Thread Senthil Kumaran
On Mon, Jun 28, 2010 at 07:36:45PM +0530, Jeffrey Jose wrote: > experience I've never found a document which portrays Twisted as an > answer for I/O concurrency problems. Seriously? Perhaps you were not looking for I/O Concurrency in the first place but where trying to use Reactor model for other

Re: [BangPypers] Help needed on reviewing my presentation for pycon.

2010-06-28 Thread Jeffrey Jose
> > > Read about SEDA, I don't know if you have experience developing multi > > I am hearing about SEDA for the first time and it says it is a 'Staged > Event Driven Approach' and gives the details of how staging can help > in the Event Driven Approach. Now, we have quickly moved to a 'staged' > ev

Re: [BangPypers] Help needed on reviewing my presentation for pycon.

2010-06-28 Thread Senthil Kumaran
On Mon, Jun 28, 2010 at 10:25:57AM +0530, Shiv Shankar wrote: > Please read my presentation notes, I am not talking about Twisted, I am > talking more about the 2 approaches, the second approach being used in > designing twisted giving you a clear reason to use twisted. Okay, I read it again to ge

Re: [BangPypers] Help needed on reviewing my presentation for pycon.

2010-06-27 Thread Zubin Mithra
On Mon, Jun 28, 2010 at 10:25 AM, Shiv Shankar wrote: > But I know the limitations of threads in python, how to break it and where > >> twisted comes in. > >> > >> Twisted is not just a solution for threads and more over threads in > > python are problematic (?) at CPU level and not at IO level

Re: [BangPypers] Help needed on reviewing my presentation for pycon.

2010-06-27 Thread Shiv Shankar
But I know the limitations of threads in python, how to break it and where >> twisted comes in. >> >> Twisted is not just a solution for threads and more over threads in > python are problematic (?) at CPU level and not at IO level and > twisted is for asynchronous operation at IO level that is wh

Re: [BangPypers] Help needed on reviewing my presentation for pycon.

2010-06-27 Thread Senthil Kumaran
On Sat, Jun 26, 2010 at 09:50:03PM +0530, Shiv Shankar wrote: > I have experience on designing composable memory transactions library in C, > which basically is aids in designing thread safe, non blocking concurrent > systems. Thanks for responding back. > I use twisted, experiment with it, run

Re: [BangPypers] Help needed on reviewing my presentation for pycon.

2010-06-26 Thread Shiv Shankar
I have experience on designing composable memory transactions library in C, which basically is aids in designing thread safe, non blocking concurrent systems. I use twisted, experiment with it, run benchmarks on it for my curiosity, never have written production code in it. But I know the limitat

Re: [BangPypers] Help needed on reviewing my presentation for pycon.

2010-06-26 Thread Senthil Kumaran
On Sat, Jun 26, 2010 at 08:12:47PM +0530, Shiv Shankar wrote: > The below mentioned is an overview of the contents included in the > presentation I would like to present in this years pycon. Could you guys Hey Shiv, Just one suggestion, speak from your practical knowledge of Twisted. I hope you a

Re: [BangPypers] Help needed on reviewing my presentation for pycon.

2010-06-26 Thread Shiv Shankar
> > - Are there genuine advantages to event driven code or is it just the > "current trend"? This talk which I saw around a year ago suggests that > event driven is not *that* great - http://carlfk.blip.tv/file/2232349 > > Python's GIL (*global interpreter lock*) is so awesome that it prevents a l

Re: [BangPypers] Help needed on reviewing my presentation for pycon.

2010-06-26 Thread Sudheer Satyanarayana
On 06/26/2010 08:12 PM, Shiv Shankar wrote: Guys, The below mentioned is an overview of the contents included in the presentation I would like to present in this years pycon. Could you guys please look through it and let me know if you will get benefited from such a presentation. Also your sugge

Re: [BangPypers] Help needed on reviewing my presentation for pycon.

2010-06-26 Thread Noufal Ibrahim
On Sat, Jun 26, 2010 at 8:12 PM, Shiv Shankar wrote: > Guys, > > The below mentioned is an overview of the contents included in the > presentation I would like to present in this years pycon. Could you guys > please look through it and let me know if you will get benefited from such a > presentati

Re: [BangPypers] Help needed on reviewing my presentation for pycon.

2010-06-26 Thread Zubin Mithra
Hello Shiv, On Sat, Jun 26, 2010 at 8:12 PM, Shiv Shankar wrote: > Guys, > > The below mentioned is an overview of the contents included in the > presentation I would like to present in this years pycon. Could you guys > please look through it and let me know if you will get benefited from such

Re: [BangPypers] HELP ME CHECK

2010-05-28 Thread Dipo Elegbede
Oh My, thanks for the correction. I'll look up the codes again and revert. Thanks peeps. On 5/27/10, Puneeth Chaganti wrote: > On Thu, May 27, 2010 at 8:52 PM, Dipo Elegbede > wrote: >> Hi all, >> >> I was reading through Alan Gauld's website: >> http://www.alan-g.me.uk/l2p/index.htm >> Under,

Re: [BangPypers] HELP ME CHECK

2010-05-27 Thread Puneeth Chaganti
On Thu, May 27, 2010 at 8:52 PM, Dipo Elegbede wrote: > Hi all, > > I was reading through Alan Gauld's website: > http://www.alan-g.me.uk/l2p/index.htm > Under, Handling files, I copied the following codes and tried to run > it but it didn't. > I have written to him though but would like to get so

Re: [BangPypers] Help regarding saml2

2010-02-11 Thread bhaskar jain
On Fri, Feb 12, 2010 at 10:19 AM, K.Manikandan wrote: > > > Would'nt simple cookies help you here since your domain is the same. > > > > SAML is for identity federation and is too big a monster for your use > > case. > > Have used SAML recently and AFAIK python-saml works for GoogleApps only. > >

Re: [BangPypers] Help regarding saml2

2010-02-11 Thread K.Manikandan
> Would'nt simple cookies help you here since your domain is the same. > > SAML is for identity federation and is too big a monster for your use > case. > Have used SAML recently and AFAIK python-saml works for GoogleApps only. > You can use the python binding of lasso library. ( > http://lasso.en

Re: [BangPypers] Help regarding saml2

2010-02-11 Thread bhaskar jain
On Thu, Feb 11, 2010 at 2:53 PM, Dhananjay Nene wrote: > AFAIK while saml2 can help support session management across domains, it is > unlikely to be doing it for you. You can use it for authentication and > combined with a SSO protocol you could allow credentials to be transferred > across variou

Re: [BangPypers] Help regarding saml2

2010-02-11 Thread Dhananjay Nene
AFAIK while saml2 can help support session management across domains, it is unlikely to be doing it for you. You can use it for authentication and combined with a SSO protocol you could allow credentials to be transferred across various services. SAML2 will help you essentially implement cross dom

Re: [BangPypers] Help -- Python with C

2010-02-06 Thread Noufal Ibrahim
On Sat, Feb 6, 2010 at 11:46 PM, ravi chandel wrote: > hi, i am looking for a good c programming books with examples pls help. 0. Please don't hijack threads. Unless you're following up on a topic of conversation in an existing thread, start a new one. 1. This mailing list specifically targets th

Re: [BangPypers] Help -- Python with C

2010-02-06 Thread ravi chandel
hi, i am looking for a good c programming books with examples pls help. regards, ravi chandel Original message From:VIJAY KUMAR< vnbang2...@yahoo.com > Date: 04 Feb 10 14:29:29 Subject:[BangPypers] Help Python with C To: Bangalore Python Users Group India

Re: [BangPypers] Help -- Python with C

2010-02-04 Thread Noufal Ibrahim
On Thu, Feb 4, 2010 at 2:29 PM, VIJAY KUMAR wrote: > Hi , >     I wanted to call the function defined in C in to python module. > > C filedummy_c_module.c contains below > >    int dummy_c_function(int value) >     { >    int ret; >    ret = value + 5; >    ret

Re: [BangPypers] Help -- Python with C

2010-02-04 Thread Senthil Kumaran
On Thu, Feb 04, 2010 at 02:29:29PM +0530, VIJAY KUMAR wrote: >     I wanted to call the function defined in C in to python module. Follow the examples given here: http://nedbatchelder.com/text/whirlext.html You should be able to convert you C function into a proper python module. -- Senthil I

Re: [BangPypers] Help -- Python with C

2010-02-04 Thread Madhusudhan sunkara
here is good starting point : http://superjared.com/entry/anatomy-python-c-module/ On Thu, Feb 4, 2010 at 2:29 PM, VIJAY KUMAR wrote: > Hi , > I wanted to call the function defined in C in to python module. > > C filedummy_c_module.c contains below > >int dummy_c_function(int v

Re: [BangPypers] Help plzz..

2010-01-20 Thread Rajeev J Sebastian
On Wed, Jan 20, 2010 at 7:38 PM, VIJAY KUMAR wrote: > Starting with Basic I found learning python  from Mark Lutz is good. > > > http://books.google.co.in/books?id=wSC-tyYy5bsC&pg=PA503&dq=learning+python+pdf&ei=1g1XS4rEJInclQSU2rioAw&cd=1#v=onepage&q=&f=false Noone has read the Python Tutorial ?

Re: [BangPypers] Help plzz..

2010-01-20 Thread VIJAY KUMAR
m: Jeffrey Jose Subject: Re: [BangPypers] Help plzz.. To: "Bangalore Python Users Group - India" Date: Wednesday, 20 January, 2010, 7:15 PM +1 for both Byte of Python and Dive into Python Also, Python CookBook Once you've familiarised with the language (I didnt say mastered it)

Re: [BangPypers] Help plzz..

2010-01-20 Thread Jeffrey Jose
+1 for both Byte of Python and Dive into Python Also, Python CookBook Once you've familiarised with the language (I didnt say mastered it) hit video.google.com for some excellent Google Tech Talks in the field of python including Python Giants like Alex Martelli I've also found stackoverflow.co

Re: [BangPypers] Help plzz..

2010-01-20 Thread JAGANADH G
On Wed, Jan 20, 2010 at 6:04 PM, Diptanu Choudhury wrote: > I felt that Dive into Python can be a little tough to begin with. The > tutorial on docs.python.com was easier to follow for me when I started > out. > But having said that, it depends on the person. > > A friend of mind found Dive into P

Re: [BangPypers] Help plzz..

2010-01-20 Thread Diptanu Choudhury
I felt that Dive into Python can be a little tough to begin with. The tutorial on docs.python.com was easier to follow for me when I started out. But having said that, it depends on the person. A friend of mind found Dive into Python a little humorous and he totally loved it. :-) On Wed, Jan 20,

Re: [BangPypers] Help plzz..

2010-01-20 Thread Srinivas Reddy Thatiparthy
>The official tutorial : http://docs.python.org/tutorial/index.html (best place to start) Mark Pilgrims Dive into Python : >http://diveintopython.org/toc/index.html(excellent read) +1 for dive into python ;An excellent one,indeed. Regards, Srinivas Reddy T - You never learn something until yo

Re: [BangPypers] Help plzz..

2010-01-20 Thread Anand Balachandran Pillai
On Wed, Jan 20, 2010 at 4:02 PM, Noufal Ibrahim wrote: > On Wed, Jan 20, 2010 at 3:38 PM, murugadoss >wrote: > > > Hello, > > I want to learn python scripting. Can anyone suggest me any book or > link > > to start with.Books with sample example will be more helpfull. > > > The official tutoria

Re: [BangPypers] Help plzz..

2010-01-20 Thread Noufal Ibrahim
On Wed, Jan 20, 2010 at 3:38 PM, murugadoss wrote: > Hello, > I want to learn python scripting. Can anyone suggest me any book or link > to start with.Books with sample example will be more helpfull. The official tutorial : http://docs.python.org/tutorial/index.html (best place to start) Mark

Re: [BangPypers] Help plzz..

2010-01-20 Thread Kenneth Gonsalves
On Wednesday 20 Jan 2010 3:48:56 pm Ankur Gupta wrote: > > Hello, > > I want to learn python scripting. Can anyone suggest me any book or > > link to start with.Books with sample example will be more helpfull. > > Try this book http://openbookproject.net//thinkCSpy/ > or buy 'python in a nutsh

Re: [BangPypers] Help plzz..

2010-01-20 Thread nikunj badjatya
Hi, "A Byte Of Python" By Swaroop CH, http://www.swaroopch.com/notes/Python freely downloadable, An awesome book, easy to understand texts and has suffice examples. Hello, > I want to learn python scripting. Can anyone suggest me any book or link > to start with.Books with sample example wil

Re: [BangPypers] Help plzz..

2010-01-20 Thread Ankur Gupta
On Wed, Jan 20, 2010 at 3:38 PM, murugadoss wrote: > Hello, > I want to learn python scripting. Can anyone suggest me any book or link > to start with.Books with sample example will be more helpfull. > Try this book http://openbookproject.net//thinkCSpy/ > > -- > Thanks & Regards > V.Murugados

Re: [BangPypers] help me to fix this error

2009-10-20 Thread Anand Balachandran Pillai
On Tue, Oct 20, 2009 at 3:38 PM, Sidharth Kuruvila < sidharth.kuruv...@gmail.com> wrote: > Hi, > Blargh! Boy! Read the mails! That code you wrote runs fine on 2.6. > But won't run on 3.0. > > This should work. > > intab = "aeiou" > outtab = "12345" > trantab = str.maketrans(intab,outtab) #Watch t

Re: [BangPypers] help me to fix this error

2009-10-20 Thread Senthil Kumar M
this works fine.thank you On Tue, Oct 20, 2009 at 3:38 PM, ashok raavi wrote: > > > On Tue, Oct 20, 2009 at 3:24 PM, Senthil Kumar M wrote: > >> See this link. I have tried this site but could not find what is the >> mistake.Thats why I send it here.ok? >> >> http://docs.python.org/dev/3.0/libra

Re: [BangPypers] help me to fix this error

2009-10-20 Thread Sidharth Kuruvila
Hi, Blargh! Boy! Read the mails! That code you wrote runs fine on 2.6. But won't run on 3.0. This should work. intab = "aeiou" outtab = "12345" trantab = str.maketrans(intab,outtab) #Watch this line! st = "this is string examplewow!!!"; print(st.translate(trantab)) Basically they've moved

Re: [BangPypers] help me to fix this error

2009-10-20 Thread ashok raavi
On Tue, Oct 20, 2009 at 3:24 PM, Senthil Kumar M wrote: > See this link. I have tried this site but could not find what is the > mistake.Thats why I send it here.ok? > > http://docs.python.org/dev/3.0/library/stdtypes.html?highlight=maketrans#str.maketrans > > > On Tue, Oct 20, 2009 at 3:14 PM, An

Re: [BangPypers] help me to fix this error

2009-10-20 Thread Senthil Kumar M
See this link. I have tried this site but could not find what is the mistake.Thats why I send it here.ok? http://docs.python.org/dev/3.0/library/stdtypes.html?highlight=maketrans#str.maketrans On Tue, Oct 20, 2009 at 3:14 PM, Anand Balachandran Pillai < abpil...@gmail.com> wrote: > > > On Tue, Oc

Re: [BangPypers] help me to fix this error

2009-10-20 Thread Anand Balachandran Pillai
On Tue, Oct 20, 2009 at 3:11 PM, Senthil Kumar M wrote: > from string import maketrans > intab = "aeiou" > outtab = "12345" > trantab = maketrans(intab,outtab) > st = "this is string examplewow!!!"; > print(st.translate(trantab)) > -- > > I g

Re: [BangPypers] help me to fix this error

2009-10-20 Thread Senthil Kumar M
from string import maketrans intab = "aeiou" outtab = "12345" trantab = maketrans(intab,outtab) st = "this is string examplewow!!!"; print(st.translate(trantab)) -- I got this error, Traceback (most recent call last): File "C:\Python30\ful

Re: [BangPypers] help me to fix this error

2009-10-20 Thread Anand Balachandran Pillai
On Tue, Oct 20, 2009 at 2:40 PM, Senthil Kumar M wrote: > -- > #!/usr/bin/python > > from string import maketrans > intab = "aeiou" > outtab = "12345" > trantab = intab.maketrans(outtab) > > str = "this is string examplewow!!!"; > print s

Re: [BangPypers] help me to fix this error

2009-10-20 Thread Sidharth Kuruvila
Hi, Could you print the error message too. I don't have python 3 so i can't run the code you posted. A couple of quick pointers. You don't need this line `#!/usr/bin/python`. That's for telling a unix shell to use python to run the remaining code. Yo don't need this line `from string import mak

Re: [BangPypers] help me to fix this error

2009-10-20 Thread Senthil Kumar M
-- #!/usr/bin/python from string import maketrans intab = "aeiou" outtab = "12345" trantab = intab.maketrans(outtab) str = "this is string examplewow!!!"; print str.translate(trantab); ---

Re: [BangPypers] help me to fix this error

2009-10-20 Thread Sidharth Kuruvila
Hi, This looks like it's because python's strings have change in python 3. The characters used to be 8bit bytes but now they are 16 bits wide. A quick google tells me that str now has a method called maketrans so s1.maketrans(s2) should work. I'm guessing you are using a tutorial written for one

Re: [BangPypers] Help Python framework for report creation (bar graph, pie etc)

2009-09-17 Thread Jins Thomas
On Thu, Sep 17, 2009 at 9:53 AM, Balamurugan S wrote: > On Wed, Sep 16, 2009 at 7:48 PM, Jins Thomas wrote: > > Would any body please comment on some good frameworks in python (web > based > > GUI), which is already available on which i can add my customizations. > This > > is to replace one of t

Re: [BangPypers] Help Python framework for report creation (bar graph, pie etc)

2009-09-16 Thread Balamurugan S
On Wed, Sep 16, 2009 at 7:48 PM, Jins Thomas wrote: > Would any body please comment on some good frameworks in python (web based > GUI), which is already available on which i can add my customizations. This > is to replace one of the reporting frameworks provided by Business Objects > Web Intellig

Re: [BangPypers] Help Python framework for report creation (bar graph, pie etc)

2009-09-16 Thread Carl Karsten
On Wed, Sep 16, 2009 at 11:45 AM, Carl Karsten wrote: > For the row/column text reports, > http://dabodev.com/wiki/ReportDesigner (if there were docs, thats > where they would be.  there is a .mov somewhere on the site) http://dabodev.com/documentation # Report Designer Overview, Part 2 (Paul, 2

Re: [BangPypers] Help Python framework for report creation (bar graph, pie etc)

2009-09-16 Thread Carl Karsten
For the row/column text reports, http://dabodev.com/wiki/ReportDesigner (if there were docs, thats where they would be. there is a .mov somewhere on the site) dabo is meant for making wx apps, but I have used the wx based report IDE to generate the .rfxml layout files and hook those into websites

Re: [BangPypers] Help Python framework for report creation (bar graph, pie etc)

2009-09-16 Thread Pradeep Gowda
On Wed, Sep 16, 2009 at 11:31 AM, Noufal Ibrahim wrote: > On Wed, Sep 16, 2009 at 7:48 PM, Jins Thomas wrote: >> Hi all, >> >> I'm relatively a newbie to python. But i do read most of the posts in this >> list.  Currently I'm doing a study on developing one reporting framework to >> pull the data

Re: [BangPypers] Help Python framework for report creation (bar graph, pie etc)

2009-09-16 Thread Noufal Ibrahim
On Wed, Sep 16, 2009 at 7:48 PM, Jins Thomas wrote: > Hi all, > > I'm relatively a newbie to python. But i do read most of the posts in this > list.  Currently I'm doing a study on developing one reporting framework to > pull the data from the database and project in appealing way like pie > chart

Re: [BangPypers] Help Python framework for report creation (bar graph, pie etc)

2009-09-16 Thread Pradeep Gowda
On Wed, Sep 16, 2009 at 10:24 AM, Santhosh Divakar wrote: > For plotting you can use gnuplot or pychart. > > Now for my project I used both gnuplot and pychart , but went with pychart > since the latter is easier to integrate with a web-framework. I can ask > pychart to give me the output in a PNG

Re: [BangPypers] Help Python framework for report creation (bar graph, pie etc)

2009-09-16 Thread sudhakar s
For generating reports u can use ReportLab. you can easily generate pie charts, normal charts, bar graph based on the data present in database. >From report u can incorporate into web based application. On Wed, Sep 16, 2009 at 7:48 PM, Jins Thomas wrote: > Hi all, > > I'm relatively a new

  1   2   >