From noufal at nibrahim.net.in Thu May 2 08:32:07 2013 From: noufal at nibrahim.net.in (Noufal Ibrahim) Date: Thu, 02 May 2013 12:02:07 +0530 Subject: [BangPypers] [OT][Commercial] Git workshop in Bangalore Message-ID: <87fvy5x57c.fsf@sanitarium.localdomain> Hello everyone, I apologise in advance for the off topic email. I'm posting this here since most people these days use git and github for their open source (and often company) version control needs. I'm doing a 2 day git workshop on May 11 and 12 in Bangalore in association with Hasgeek. The website is at http://gitworkshop.hasgeek.com/. Git from the basics all the way to complex branching operations and collaboration. Comes with notes that I've made specifically for the course. If anyone is interested in learning git or taking their skills a notch higher, do enrol. Thanks! -- Cordially, Noufal http://nibrahim.net.in From maniandram01 at gmail.com Thu May 2 15:39:18 2013 From: maniandram01 at gmail.com (Ramchandra Apte) Date: Thu, 2 May 2013 19:09:18 +0530 Subject: [BangPypers] [OT][Commercial] Git workshop in Bangalore In-Reply-To: <87fvy5x57c.fsf@sanitarium.localdomain> References: <87fvy5x57c.fsf@sanitarium.localdomain> Message-ID: Great. Now somebody will start posting Windows tips and tricks under the same premise. On 2 May 2013 12:02, Noufal Ibrahim wrote: > > Hello everyone, > I apologise in advance for the off topic email. I'm posting this > here since most people these days use git and github for their open > source (and often company) version control needs. > > I'm doing a 2 day git workshop on May 11 and 12 in Bangalore in > association with Hasgeek. The website is at > http://gitworkshop.hasgeek.com/. Git from the basics all the way to > complex branching operations and collaboration. Comes with notes that > I've made specifically for the course. > > If anyone is interested in learning git or taking their skills a > notch higher, do enrol. > > Thanks! > -- > Cordially, > Noufal > http://nibrahim.net.in > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > From venkat83 at gmail.com Thu May 2 19:51:51 2013 From: venkat83 at gmail.com (Venkatraman S) Date: Thu, 2 May 2013 23:21:51 +0530 Subject: [BangPypers] uWSGI Spooler Message-ID: [I posted this in one more forum...but thought would share my enthusiasm here too...:) ] I have been playing around uWSGI (for a django app) for a few days now and i must say that Spooler has been one of the best finds. I haven't done any benchmarking yet, but the ease of use is so darn good that I am extremely impressed. I was planning to use celery+redis, but this makes things so easy that i do not have to take care of anything else. I think this would work just fine for most of the websites/webapps that are not expecting a gazillion hits/tasks. I love simple but powerful constructs(another e.g Django's content-types), and Spooler was one such. Any other experiences to share? Especially, i would love to hear from someone who can share cons of Spooler or its reliability. Ref: http://uwsgi-docs.readthedocs.org/en/latest/PythonDecorators.html https://uwsgi-docs.readthedocs.org/en/latest/Spooler.html -V @venkasub From gora at mimirtech.com Fri May 3 07:39:42 2013 From: gora at mimirtech.com (Gora Mohanty) Date: Fri, 3 May 2013 11:09:42 +0530 Subject: [BangPypers] uWSGI Spooler In-Reply-To: References: Message-ID: On 2 May 2013 23:21, Venkatraman S wrote: > [I posted this in one more forum...but thought would share my enthusiasm > here too...:) ] > > I have been playing around uWSGI (for a django app) for a few days now and We have switched to nginx + uWSGI for our Django projects, in preference to the more standard Apache + mod_wsgi. Yet to do real benchmarking, but initial results show a significant gain in performance. > i must say that Spooler has been one of the best finds. I haven't done any > benchmarking yet, but the ease of use is so darn good that I am extremely > impressed. I was planning to use celery+redis, but this makes things so > easy that i do not have to take care of anything else. I think this would > work just fine for most of the websites/webapps that are not expecting a > gazillion hits/tasks. > > I love simple but powerful constructs(another e.g Django's content-types), > and Spooler was one such. [...] Haven't looked at the uWSGI spooler yet, as things that we need offline tasks for, such as mail, use Celery which is better supported by Django apps, e.g., django-celery-mail. uWSGI is interesting. Besides the base features, we will also be looking at its caching performance, auto-scaling, and asynchronous access. Regards, Gora From amit.pureenergy at gmail.com Mon May 6 19:10:38 2013 From: amit.pureenergy at gmail.com (Amit Sethi) Date: Mon, 6 May 2013 22:40:38 +0530 Subject: [BangPypers] Running a trigger with sqlalchemy that works with session.execute Message-ID: Anyone who can help out with sqlalchemy related problem Running a trigger with sqlalchemy that works with session.execute I have a app which using sqlalchemy as the orm. As the app is one in transition some of the update query's run through a session.execute . However I need to create a trigger of some kind . I am trying to use MapperExtensions but it seems that session.execute when it runs an update does not actually create a Mapper event. How can I trigger one of the mapper events? Please do check these docs: http://docs.sqlalchemy.org/en/rel_0_7/orm/deprecated.html -- A-M-I-T S|S From umeshreloaded at yahoo.com Tue May 7 03:49:29 2013 From: umeshreloaded at yahoo.com (Umesh Tiptur) Date: Tue, 7 May 2013 09:49:29 +0800 (SGT) Subject: [BangPypers] Basic of basic question Message-ID: <1367891369.33071.YahooMailNeo@web190802.mail.sg3.yahoo.com> Hi, I am very new to programming in python. But I want to know is user hass inputted a number or a string Please help with this HOW to.. With regards, Umesh. From gora at mimirtech.com Tue May 7 05:39:03 2013 From: gora at mimirtech.com (Gora Mohanty) Date: Tue, 7 May 2013 09:09:03 +0530 Subject: [BangPypers] Basic of basic question In-Reply-To: <1367891369.33071.YahooMailNeo@web190802.mail.sg3.yahoo.com> References: <1367891369.33071.YahooMailNeo@web190802.mail.sg3.yahoo.com> Message-ID: On 7 May 2013 07:19, Umesh Tiptur wrote: > Hi, > > I am very new to programming in python. But I want to know is user hass inputted a number or a string > > Please help with this HOW to.. [...] * You can use type( var ) to find the type of a variable, var * Typically, one should not need to know the type of a variable * This is a very basic question that can be answered by a book or an online learning resource. Searching Google would find this, for example. Regards, Gora From satishsagar83 at gmail.com Tue May 7 06:36:40 2013 From: satishsagar83 at gmail.com (L Radhakrishna Rao) Date: Tue, 7 May 2013 10:06:40 +0530 Subject: [BangPypers] Basic of basic question In-Reply-To: References: <1367891369.33071.YahooMailNeo@web190802.mail.sg3.yahoo.com> Message-ID: Which version of python you are using? In python 2.x, you have to use raw_input In python 3, it is input. Usually, the type is taken care automatically, you don't have to worry about the variables type in python. Regards, RK On Tue, May 7, 2013 at 9:09 AM, Gora Mohanty wrote: > On 7 May 2013 07:19, Umesh Tiptur wrote: > > Hi, > > > > I am very new to programming in python. But I want to know is user hass > inputted a number or a string > > > > Please help with this HOW to.. > [...] > > * You can use type( var ) to find the type of a variable, var > * Typically, one should not need to know the type of a variable > * This is a very basic question that can be answered by a book > or an online learning resource. Searching Google would find > this, for example. > > Regards, > Gora > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > From noufal at nibrahim.net.in Tue May 7 07:33:37 2013 From: noufal at nibrahim.net.in (Noufal Ibrahim) Date: Tue, 07 May 2013 11:03:37 +0530 Subject: [BangPypers] Basic of basic question In-Reply-To: <1367891369.33071.YahooMailNeo@web190802.mail.sg3.yahoo.com> (Umesh Tiptur's message of "Tue, 7 May 2013 09:49:29 +0800 (SGT)") References: <1367891369.33071.YahooMailNeo@web190802.mail.sg3.yahoo.com> Message-ID: <87vc6vtkum.fsf@sanitarium.localdomain> Umesh Tiptur writes: > Hi, > > I am very new to programming in python. But I want to know is user > hass inputted a number or a string > > Please help with this HOW to.. Python doesn't have anything like C's scanf that can read input into variables of fixed types. Anything that you read from the user (using raw_input[1]), will be returned as a string. So even if the user types 2 and hits enter, you will get back "2" (which is a string). To check whether this can be converted into a number, the usual way is to try to use it like a number and catch the exception which will be raised if the conversion fails. Here is a simple example. >>> x = "2" >>> try: ... int(x) ... except ValueError: ... print "Not a number" ... 2 >>> x = "abcd" >>> try: ... int(x) ... except ValueError: ... print "Not a number" ... Not a number [...] Footnotes: [1] http://docs.python.org/2/library/functions.html#raw_input -- Cordially, Noufal http://nibrahim.net.in From umeshreloaded at yahoo.com Tue May 7 08:11:11 2013 From: umeshreloaded at yahoo.com (Umesh Tiptur) Date: Tue, 7 May 2013 14:11:11 +0800 (SGT) Subject: [BangPypers] Another qn. THanks for the basic of basic qn\ Message-ID: <1367907071.29883.YahooMailNeo@web190806.mail.sg3.yahoo.com> Hi all, Thanks for the reply for the basic of basic qn: But still I am stuck with another problem, i.e I want to add a number which is 23. I want a digit answer in this case. Any idea how to split a number into digits to add them. With regards, Umesh From noufal at nibrahim.net.in Tue May 7 08:17:31 2013 From: noufal at nibrahim.net.in (Noufal Ibrahim) Date: Tue, 07 May 2013 11:47:31 +0530 Subject: [BangPypers] Another qn. THanks for the basic of basic qn\ In-Reply-To: <1367907071.29883.YahooMailNeo@web190806.mail.sg3.yahoo.com> (Umesh Tiptur's message of "Tue, 7 May 2013 14:11:11 +0800 (SGT)") References: <1367907071.29883.YahooMailNeo@web190806.mail.sg3.yahoo.com> Message-ID: <87ip2vtitg.fsf@sanitarium.localdomain> Umesh Tiptur writes: > Hi all, > > Thanks for the reply for the basic of basic qn: But still I am stuck > with another problem, i.e I want to add a number which is 23. I want > a digit answer in this case. > > Any idea how to split a number into digits to add them. This is a small problem but which can exercise your imagination a little. Why don't you try a few ideas and post them back? There will be suggestions here and by the time we're done, you'll end up learning more. [...] -- Cordially, Noufal http://nibrahim.net.in From satishsagar83 at gmail.com Tue May 7 08:17:59 2013 From: satishsagar83 at gmail.com (L Radhakrishna Rao) Date: Tue, 7 May 2013 11:47:59 +0530 Subject: [BangPypers] Another qn. THanks for the basic of basic qn\ In-Reply-To: <1367907071.29883.YahooMailNeo@web190806.mail.sg3.yahoo.com> References: <1367907071.29883.YahooMailNeo@web190806.mail.sg3.yahoo.com> Message-ID: Are you looking for something like this: >>> Str = '23' >>> Sum = 0 >>> for i in list(Str): ... Sum = Sum + int(i) ... >>> Sum 5 On Tue, May 7, 2013 at 11:41 AM, Umesh Tiptur wrote: > Hi all, > > Thanks for the reply for the basic of basic qn: > But still I am stuck with another problem, i.e I want to add a number > which is 23. > I want a digit answer in this case. > > Any idea how to split a number into digits to add them. > > With regards, > Umesh > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > From satishsagar83 at gmail.com Tue May 7 08:23:24 2013 From: satishsagar83 at gmail.com (L Radhakrishna Rao) Date: Tue, 7 May 2013 11:53:24 +0530 Subject: [BangPypers] Another qn. THanks for the basic of basic qn\ In-Reply-To: <87ip2vtitg.fsf@sanitarium.localdomain> References: <1367907071.29883.YahooMailNeo@web190806.mail.sg3.yahoo.com> <87ip2vtitg.fsf@sanitarium.localdomain> Message-ID: Umesh, for your learning, try to write this in a single python statement, for this search for comprenhension On Tue, May 7, 2013 at 11:47 AM, Noufal Ibrahim wrote: > Umesh Tiptur writes: > > > Hi all, > > > > Thanks for the reply for the basic of basic qn: But still I am stuck > > with another problem, i.e I want to add a number which is 23. I want > > a digit answer in this case. > > > > Any idea how to split a number into digits to add them. > > This is a small problem but which can exercise your imagination a > little. Why don't you try a few ideas and post them back? There will be > suggestions here and by the time we're done, you'll end up learning > more. > > [...] > > > -- > Cordially, > Noufal > http://nibrahim.net.in > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > From augustus at gaglers.com Wed May 8 07:55:53 2013 From: augustus at gaglers.com (Augustus Franklin) Date: Wed, 8 May 2013 11:25:53 +0530 Subject: [BangPypers] [JOB] Lead Developer for a real-time chat startup in Bangalore Message-ID: Hi Pypers, We are looking for a core-team member for our startup in Bangalore, India. We offer good chunk of equity for the right person. Feel free to contact me directly as well. Here are more details, *Background* Gaglers is a scalable real-time chat platform. Currently, we offer live chat with unlimited operators and community chat for support. Our high-level technical challenges are, scaling a real-time platform to millions of concurrent users. measure all interactions to make data driven decisions This is a full-time position based in Bangalore, India. *Typical Day at the Job* You'll work directly with the Founder. You'll be working to implement new features of the product. Here is how a typical day will look like. You start by looking the status of the production dashboard and bugs. With a quick scan you find that that the message counts are not getting updated in the dashboard after the code push last night. You jump on it right way and send a short code-review out, after testing it on your staging setup. With that out of the way, you get back to the feature that you have been working on. You know exactly why you are building this feature and what impact it will have on the customers. The feature was specced out last week in some intense design discussions. You finished a quick prototype yesterday. You throw it out today and start the code and unit testing for the initial release. The plan is to deploy a basic version this week sometime, gather feedback over a few days and then fine-tune it based on what the customers say. Just after lunch, while you code, you come across a bug in the queuing sub-system. You decide that it would be simple for you to fix it as well and so you do. While you fixed the bug, you thought about how you can make the queuing system much more scalable. You write a quick note to yourself to talk about it later. By the end of the day you'll have a good chunk of the new feature implemented. You'll send that queuing system bug fix for code-review tomorrow morning and continue your work of the new feature. *How the role will develop* Initially, the tasks you take on will be smaller and fairly well defined. Longer term, the requirements you get will be more general, and you?ll interpret them to produce great solutions. You?ll also generate tasks on your own initiative as you identify opportunities. As we grow, we may need to take on more developers. You?ll have the opportunity to be responsible for these folks if you want. * Technical Qualifications* You will be, fluent in Django and Python and comfortable using Git be happy with HTML and Javascript have designed and written applications using Django comfortable managing a group of remote linux servers. You'll have the opportunity to work on all areas of our stack. Our technology stack includes, Django, Python, Erlang Redis, MySQL RabbitMQ, Celery MemCache Bootstrap, JQuery, Javascript We are looking for someone who sees their role as bigger than just programming. You'll also get to know our business. You'll also look for opportunities to make things cooler for our customers. *Your Challenge* We want to see demonstrable ability to code in Python. You could either send us the code for the challenge below, or a pointer to any other code that you have personally written Write a simple web application, in Python, that does the following and send the Github link to founders. Implement a webpage that will take a line of text as input. If the input contains a URL, fetch the first image from the URL and display it below the text box. Make the necessary assumptions and defaults required to complete the task. Example: If the given text is "Hey, check this out, http://gaglers.com/blog/2013/03/29/live-chat-software-unlimited-agents/ I love it." The webpage must display the line of text and the image of the sun from the blog entry -- Augustus Franklin Co-founder, gaglers.com From jitu.icfai at gmail.com Wed May 8 13:42:06 2013 From: jitu.icfai at gmail.com (jitendra gupta) Date: Wed, 8 May 2013 17:12:06 +0530 Subject: [BangPypers] Basic of basic question In-Reply-To: <87vc6vtkum.fsf@sanitarium.localdomain> References: <1367891369.33071.YahooMailNeo@web190802.mail.sg3.yahoo.com> <87vc6vtkum.fsf@sanitarium.localdomain> Message-ID: >>> x = input("Enter the nu\t") Enter the nu 3 >>> type(x) >>> x = input("Enter the STR\t") Enter the STR "3" >>> type(x) >>> Use input(), this will take care of your data type On Tue, May 7, 2013 at 11:03 AM, Noufal Ibrahim wrote: > Umesh Tiptur writes: > > > Hi, > > > > I am very new to programming in python. But I want to know is user > > hass inputted a number or a string > > > > Please help with this HOW to.. > > Python doesn't have anything like C's scanf that can read input into > variables of fixed types. > > Anything that you read from the user (using raw_input[1]), will be > returned as a string. So even if the user types 2 and hits enter, you > will get back "2" (which is a string). > > To check whether this can be converted into a number, the usual way is > to try to use it like a number and catch the exception which will be > raised if the conversion fails. Here is a simple example. > > >>> x = "2" > >>> try: > ... int(x) > ... except ValueError: > ... print "Not a number" > ... > 2 > > > >>> x = "abcd" > >>> try: > ... int(x) > ... except ValueError: > ... print "Not a number" > ... > Not a number > > > [...] > > > Footnotes: > [1] http://docs.python.org/2/library/functions.html#raw_input > > -- > Cordially, > Noufal > http://nibrahim.net.in > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > From noufal at nibrahim.net.in Wed May 8 13:47:42 2013 From: noufal at nibrahim.net.in (Noufal Ibrahim) Date: Wed, 08 May 2013 17:17:42 +0530 Subject: [BangPypers] Basic of basic question In-Reply-To: (jitendra gupta's message of "Wed, 8 May 2013 17:12:06 +0530") References: <1367891369.33071.YahooMailNeo@web190802.mail.sg3.yahoo.com> <87vc6vtkum.fsf@sanitarium.localdomain> Message-ID: <87mws5n15t.fsf@sanitarium.localdomain> jitendra gupta writes: >>>> x = input("Enter the nu\t") > Enter the nu 3 >>>> type(x) > >>>> x = input("Enter the STR\t") > Enter the STR "3" >>>> type(x) > >>>> > > Use input(), this will take care of your data type input is the equivalent of eval(raw_input()). So you get funny things like this >>> input() os.listdir("/") ['sbin', 'dev', 'mnt', 'etc', 'lost+found', '.ure', '.pulse', 'proc', 'sys', 'home', 'media', 'lib64', 'lib', 'opt', 'usr', 'vmlinuz.old', 'initrd.img', 'lib32', 'tmp', 'run', 'vmlinuz', 'srv', '.pulse-cookie', 'bin', 'petabox', 'selinux', 'root', 'var', 'initrd.img.old', 'boot'] Not the smartest of things to do. [...] -- Cordially, Noufal http://nibrahim.net.in From anandology at gmail.com Wed May 8 13:55:02 2013 From: anandology at gmail.com (Anand Chitipothu) Date: Wed, 8 May 2013 17:25:02 +0530 Subject: [BangPypers] Basic of basic question In-Reply-To: References: <1367891369.33071.YahooMailNeo@web190802.mail.sg3.yahoo.com> <87vc6vtkum.fsf@sanitarium.localdomain> Message-ID: In my 7+ years of Python programming I've never used the input/raw_input functions. People coming from C background look for a scanf replacement in Python, but that is now the way things are done in Python. You just write a function and call it at the end of the script and run it. Asking user for input is not very usually done in Python. Anand On Wed, May 8, 2013 at 5:12 PM, jitendra gupta wrote: > >>> x = input("Enter the nu\t") > Enter the nu 3 > >>> type(x) > > >>> x = input("Enter the STR\t") > Enter the STR "3" > >>> type(x) > > >>> > > Use input(), this will take care of your data type > > > On Tue, May 7, 2013 at 11:03 AM, Noufal Ibrahim >wrote: > > > Umesh Tiptur writes: > > > > > Hi, > > > > > > I am very new to programming in python. But I want to know is user > > > hass inputted a number or a string > > > > > > Please help with this HOW to.. > > > > Python doesn't have anything like C's scanf that can read input into > > variables of fixed types. > > > > Anything that you read from the user (using raw_input[1]), will be > > returned as a string. So even if the user types 2 and hits enter, you > > will get back "2" (which is a string). > > > > To check whether this can be converted into a number, the usual way is > > to try to use it like a number and catch the exception which will be > > raised if the conversion fails. Here is a simple example. > > > > >>> x = "2" > > >>> try: > > ... int(x) > > ... except ValueError: > > ... print "Not a number" > > ... > > 2 > > > > > > >>> x = "abcd" > > >>> try: > > ... int(x) > > ... except ValueError: > > ... print "Not a number" > > ... > > Not a number > > > > > > [...] > > > > > > Footnotes: > > [1] http://docs.python.org/2/library/functions.html#raw_input > > > > -- > > Cordially, > > Noufal > > http://nibrahim.net.in > > _______________________________________________ > > BangPypers mailing list > > BangPypers at python.org > > http://mail.python.org/mailman/listinfo/bangpypers > > > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > -- Anand http://anandology.com/ From kapoor.vaidik at gmail.com Wed May 8 14:10:41 2013 From: kapoor.vaidik at gmail.com (Vaidik Kapoor) Date: Wed, 8 May 2013 17:40:41 +0530 Subject: [BangPypers] Basic of basic question In-Reply-To: <87mws5n15t.fsf@sanitarium.localdomain> References: <1367891369.33071.YahooMailNeo@web190802.mail.sg3.yahoo.com> <87vc6vtkum.fsf@sanitarium.localdomain> <87mws5n15t.fsf@sanitarium.localdomain> Message-ID: +1 The method explained by Noufal (using try except while trying to convert input string to int) should be the preferred way of doing what you intend to do. On May 8, 2013 5:18 PM, "Noufal Ibrahim" wrote: > jitendra gupta writes: > > >>>> x = input("Enter the nu\t") > > Enter the nu 3 > >>>> type(x) > > > >>>> x = input("Enter the STR\t") > > Enter the STR "3" > >>>> type(x) > > > >>>> > > > > Use input(), this will take care of your data type > > input is the equivalent of eval(raw_input()). So you get funny things > like this > > >>> input() > os.listdir("/") > ['sbin', 'dev', 'mnt', 'etc', 'lost+found', '.ure', '.pulse', 'proc', > 'sys', 'home', 'media', 'lib64', 'lib', 'opt', 'usr', 'vmlinuz.old', > 'initrd.img', 'lib32', 'tmp', 'run', 'vmlinuz', 'srv', '.pulse-cookie', > 'bin', 'petabox', 'selinux', 'root', 'var', 'initrd.img.old', 'boot'] > > Not the smartest of things to do. > > [...] > > > -- > Cordially, > Noufal > http://nibrahim.net.in > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > From vinoth.newt at gmail.com Wed May 8 15:02:34 2013 From: vinoth.newt at gmail.com (Vinoth Jayaraman) Date: Wed, 8 May 2013 18:32:34 +0530 Subject: [BangPypers] Hiring "Python + Django - Developers" for Hyderabad Message-ID: Dear Professionals Greetings from Newt Global!!! ***We do have an urgent job opening for ?Python Development? *** About Newtglobal: Newt Global is a global IT services and Product development Company headquartered in Irving, USA. Our offshore delivery center is based out of Chennai, India from where we serve some of the largest clients in US and India. At Newt Global, our Mobile CoE is focused on providing innovative solutions and globally scalable services over Mobile Technologies to Enterprises and ISVs. Newt Global is also a Tier 1 service provider to many Fortune 50 companies. Our services have been deployed across a broad spectrum of industries including telecom, airline/travel, banking, and supply chain. * * *Python Development (Looking for candidate?s who can join within 30 Days)* *Job Description* ? Must have 4+ years of solid experience in Python apps & Django/Javascript. ? Comfort with developing rich GUIs for IOS. ? Solid grasp of algorithms, memory management, object oriented programming, MVC programming and concurrent programming. ? Strong experience detecting and correcting memory usage issues, and optimizing code for application performance. ??? Experience with software development in a health domain a big plus ? Must have working skills in AGILE/SCRUM methodologies, software test methodology and tool sets. ? Must have excellent verbal and written communication skills Job Location: Hyderabad Experience: 4+ Years If interested kindly send your updated CV in the word format to jvinoth at newtglobal.com & also provide the below details to process it further Full Name as per Passport: Total IT Experience: Relevant Experience in Python Development: Relevant Experience in Django: Relevant Experience in Javascript: Payroll Company Name / Employer Name: Current CTC: Expected CTC: Notice Period: Current Location: Willing to relocate to Hyderabad: Qualification: Reason for Job Change: Regards Vinoth Jayaraman jvinoth at newtglobal.com From mandarvaze at gmail.com Wed May 8 18:42:07 2013 From: mandarvaze at gmail.com (=?UTF-8?B?TWFuZGFyIFZhemUgLyDgpK7gpILgpKbgpL7gpLAg4KS14KSd4KWH?=) Date: Wed, 8 May 2013 22:12:07 +0530 Subject: [BangPypers] Basic of basic question In-Reply-To: References: <1367891369.33071.YahooMailNeo@web190802.mail.sg3.yahoo.com> <87vc6vtkum.fsf@sanitarium.localdomain> Message-ID: On Wed, May 8, 2013 at 5:25 PM, Anand Chitipothu wrote: > In my 7+ years of Python programming I've never used the input/raw_input > functions. People coming from C background look for a scanf replacement in > Python, but that is now the way things are done in Python. Yeah. I agree. In fact even in "C" for real-world programs, one uses command line args to get the user input (That way it can be scripted and executed unattended as well.) Same thing (command line args) can (should) be done for "real world" python programs as well. -Mandar From mnjagadeesh at gmail.com Wed May 8 19:30:40 2013 From: mnjagadeesh at gmail.com (Jagadeesh N. Malakannavar) Date: Wed, 8 May 2013 23:00:40 +0530 Subject: [BangPypers] Another qn. THanks for the basic of basic qn\ Message-ID: I prefer to do it like this >>> a = list(str(3245325)) >>> sum(map(int, a)) 24 >>> -- Thanks, Jagadeesh N.Malakannavar From gora at mimirtech.com Wed May 8 20:07:11 2013 From: gora at mimirtech.com (Gora Mohanty) Date: Wed, 8 May 2013 23:37:11 +0530 Subject: [BangPypers] Another qn. THanks for the basic of basic qn\ In-Reply-To: References: Message-ID: On 8 May 2013 23:00, Jagadeesh N. Malakannavar wrote: > I prefer to do it like this > >>>> a = list(str(3245325)) >>>> sum(map(int, a)) > 24 What does the map() gain you over basic list comprehension: sum( [int(i) for i in '3245325'] ) ignoring any try/catch for int conversion errors IMHO, this is easier to understand, more Pythonic, and likely faster. Regards, Gora From noufal at nibrahim.net.in Thu May 9 04:02:03 2013 From: noufal at nibrahim.net.in (Noufal Ibrahim) Date: Thu, 09 May 2013 07:32:03 +0530 Subject: [BangPypers] Another qn. THanks for the basic of basic qn\ In-Reply-To: (Gora Mohanty's message of "Wed, 8 May 2013 23:37:11 +0530") References: Message-ID: <87wqr8lxlw.fsf@sanitarium.localdomain> Gora Mohanty writes: > On 8 May 2013 23:00, Jagadeesh N. Malakannavar wrote: >> I prefer to do it like this >> >>>>> a = list(str(3245325)) >>>>> sum(map(int, a)) >> 24 > > What does the map() gain you over basic list comprehension: > sum( [int(i) for i in '3245325'] ) You could drop the []. No need to first generate and then iterate over the list. [...] -- Cordially, Noufal http://nibrahim.net.in From sriramnrn at gmail.com Thu May 9 05:06:16 2013 From: sriramnrn at gmail.com (Sriram Narayanan) Date: Thu, 9 May 2013 08:36:16 +0530 Subject: [BangPypers] A Comparison of Mocking Frameworks Message-ID: Hi everyone: A colleague pointed me to this comparison of mocking frameworks: http://garybernhardt.github.io/python-mock-comparison/ -- Sriram ------------------------------------ Belenix: www.belenix.org Twitter: @sriramnrn From gora at mimirtech.com Thu May 9 07:12:34 2013 From: gora at mimirtech.com (Gora Mohanty) Date: Thu, 9 May 2013 10:42:34 +0530 Subject: [BangPypers] Another qn. THanks for the basic of basic qn\ In-Reply-To: <87wqr8lxlw.fsf@sanitarium.localdomain> References: <87wqr8lxlw.fsf@sanitarium.localdomain> Message-ID: On 9 May 2013 07:32, Noufal Ibrahim wrote: > Gora Mohanty writes: > >> On 8 May 2013 23:00, Jagadeesh N. Malakannavar wrote: >>> I prefer to do it like this >>> >>>>>> a = list(str(3245325)) >>>>>> sum(map(int, a)) >>> 24 >> >> What does the map() gain you over basic list comprehension: >> sum( [int(i) for i in '3245325'] ) > > You could drop the []. No need to first generate and then iterate over > the list. Ah, yes! Forgot that the expression would act as a generator. Good catch! Regards, Gora From prashant at triconinfotech.com Thu May 9 10:22:00 2013 From: prashant at triconinfotech.com (Prashant R. Naik) Date: Thu, 9 May 2013 08:22:00 +0000 Subject: [BangPypers] [Ticket #27] A Comparison of Mocking Frameworks Message-ID: On May 09, 2013 @ 01:50 pm, bangpypers-bounces+prashant=triconinfotech.com at python.org wrote: Hi everyone: A colleague pointed me to this comparison of mocking frameworks: http://garybernhardt.github.io/python-mock-comparison/ -- Sriram ------------------------------------ Belenix: www.belenix.org Twitter: @sriramnrn _______________________________________________ BangPypers mailing list BangPypers at python.org http://mail.python.org/mailman/listinfo/bangpypers ________________________________ This is an automated response. Your issue has been noted. We'll be in touch soon. Please reply to this email or visit the URL below with any additional details. http://DB01:9675/portal/view-help-request/27 From prashant at triconinfotech.com Thu May 9 10:20:58 2013 From: prashant at triconinfotech.com (Prashant R. Naik) Date: Thu, 9 May 2013 08:20:58 +0000 Subject: [BangPypers] [Ticket #18] Another qn. THanks for the basic of basic qn\ Message-ID: On May 09, 2013 @ 01:50 pm, bangpypers-bounces+prashant=triconinfotech.com at python.org wrote: On 9 May 2013 07:32, Noufal Ibrahim wrote: > Gora Mohanty writes: > >> On 8 May 2013 23:00, Jagadeesh N. Malakannavar wrote: >>> I prefer to do it like this >>> >>>>>> a = list(str(3245325)) >>>>>> sum(map(int, a)) >>> 24 >> >> What does the map() gain you over basic list comprehension: >> sum( [int(i) for i in '3245325'] ) > > You could drop the []. No need to first generate and then iterate over > the list. Ah, yes! Forgot that the expression would act as a generator. Good catch! Regards, Gora _______________________________________________ BangPypers mailing list BangPypers at python.org http://mail.python.org/mailman/listinfo/bangpypers ________________________________ This is an automated response. Your issue has been noted. We'll be in touch soon. Please reply to this email or visit the URL below with any additional details. http://DB01:9675/portal/view-help-request/18 From prashant at triconinfotech.com Thu May 9 10:22:47 2013 From: prashant at triconinfotech.com (Prashant R. Naik) Date: Thu, 9 May 2013 08:22:47 +0000 Subject: [BangPypers] [Ticket #29] Another qn. THanks for the basic of basic qn\ Message-ID: On May 09, 2013 @ 01:50 pm, bangpypers-bounces+prashant=triconinfotech.com at python.org wrote: Gora Mohanty writes: > On 8 May 2013 23:00, Jagadeesh N. Malakannavar wrote: >> I prefer to do it like this >> >>>>> a = list(str(3245325)) >>>>> sum(map(int, a)) >> 24 > > What does the map() gain you over basic list comprehension: > sum( [int(i) for i in '3245325'] ) You could drop the []. No need to first generate and then iterate over the list. [...] -- Cordially, Noufal http://nibrahim.net.in _______________________________________________ BangPypers mailing list BangPypers at python.org http://mail.python.org/mailman/listinfo/bangpypers ________________________________ This is an automated response. Your issue has been noted. We'll be in touch soon. Please reply to this email or visit the URL below with any additional details. http://DB01:9675/portal/view-help-request/29 From prashant at triconinfotech.com Thu May 9 10:23:48 2013 From: prashant at triconinfotech.com (Prashant R. Naik) Date: Thu, 9 May 2013 08:23:48 +0000 Subject: [BangPypers] [Ticket #49] Another qn. THanks for the basic of basic qn\ Message-ID: On May 09, 2013 @ 01:51 pm, bangpypers-bounces+prashant=triconinfotech.com at python.org wrote: On 8 May 2013 23:00, Jagadeesh N. Malakannavar wrote: > I prefer to do it like this > >>>> a = list(str(3245325)) >>>> sum(map(int, a)) > 24 What does the map() gain you over basic list comprehension: sum( [int(i) for i in '3245325'] ) ignoring any try/catch for int conversion errors IMHO, this is easier to understand, more Pythonic, and likely faster. Regards, Gora _______________________________________________ BangPypers mailing list BangPypers at python.org http://mail.python.org/mailman/listinfo/bangpypers ________________________________ This is an automated response. Your issue has been noted. We'll be in touch soon. Please reply to this email or visit the URL below with any additional details. http://DB01:9675/portal/view-help-request/49 From henilpatel at gmail.com Thu May 9 12:34:13 2013 From: henilpatel at gmail.com (Henil Patel) Date: Thu, 9 May 2013 16:04:13 +0530 Subject: [BangPypers] [JOBS] Python Developers needed in Gujarat (10) Message-ID: *Job Summary* Key Skills: Understanding of Object Oriented principles, SQL, hands-on experience writing software, Linux Experience: 1+ years of writing commercial level software *Job Description* We need hands-on, Python developers to deliver scalable, flexible, web-based data-management solutions in fast paced development environment with best quality. Good English communication skills are required. Actual Python experience is preferred but optional - you must be willing to study hard and learn Python. You must be experienced in at least one Object Oriented programming language. *Additional Desired Technical Qualifications* - Experience with JavaScript, HTML and CSS - Experience with MySQL - Working knowledge of a distributed version control system Compensation will be based on experience and performance in tests/interviews; it will be in line with metros like Pune/Bangalore/Hyderabad/Chennai. This is a long term employment opportunity with rapid growth and career advancements. Reply to this email with CV & your contact information for further communication. Henil Patel From mnjagadeesh at gmail.com Thu May 9 17:19:04 2013 From: mnjagadeesh at gmail.com (Jagadeesh N. Malakannavar) Date: Thu, 9 May 2013 20:49:04 +0530 Subject: [BangPypers] BangPypers Digest, Vol 69, Issue 7 In-Reply-To: References: Message-ID: Wonderful discussion. Thanks for all replies. To my eyes map() looked better so just used it. Yes list comprehension is better idea. Thanks On Thu, May 9, 2013 at 1:54 PM, wrote: > Send BangPypers mailing list submissions to > bangpypers at python.org > > To subscribe or unsubscribe via the World Wide Web, visit > http://mail.python.org/mailman/listinfo/bangpypers > or, via email, send a message with subject or body 'help' to > bangpypers-request at python.org > > You can reach the person managing the list at > bangpypers-owner at python.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of BangPypers digest..." > > > Today's Topics: > > 1. Re: Another qn. THanks for the basic of basic qn\ > (Jagadeesh N. Malakannavar) > 2. Re: Another qn. THanks for the basic of basic qn\ (Gora Mohanty) > 3. Re: Another qn. THanks for the basic of basic qn\ (Noufal Ibrahim) > 4. A Comparison of Mocking Frameworks (Sriram Narayanan) > 5. Re: Another qn. THanks for the basic of basic qn\ (Gora Mohanty) > 6. [Ticket #27] A Comparison of Mocking Frameworks > (Prashant R. Naik) > 7. [Ticket #18] Another qn. THanks for the basic of basic qn\ > (Prashant R. Naik) > 8. [Ticket #29] Another qn. THanks for the basic of basic qn\ > (Prashant R. Naik) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Wed, 8 May 2013 23:00:40 +0530 > From: "Jagadeesh N. Malakannavar" > To: bangpypers at python.org > Subject: Re: [BangPypers] Another qn. THanks for the basic of basic > qn\ > Message-ID: > < > CA+LofSnd_amqAOPSxn31SsPFWdCLoJ8TUAb7o8Q82R1XJnTbqw at mail.gmail.com> > Content-Type: text/plain; charset=ISO-8859-1 > > I prefer to do it like this > > >>> a = list(str(3245325)) > >>> sum(map(int, a)) > 24 > >>> > > -- > > Thanks, > Jagadeesh N.Malakannavar > > > ------------------------------ > > Message: 2 > Date: Wed, 8 May 2013 23:37:11 +0530 > From: Gora Mohanty > To: Bangalore Python Users Group - India > Subject: Re: [BangPypers] Another qn. THanks for the basic of basic > qn\ > Message-ID: > < > CACiMRG+PkONBEBv6R5HTydpXREs7N19E57MV_EGwkWOrvNYidg at mail.gmail.com> > Content-Type: text/plain; charset=ISO-8859-1 > > On 8 May 2013 23:00, Jagadeesh N. Malakannavar > wrote: > > I prefer to do it like this > > > >>>> a = list(str(3245325)) > >>>> sum(map(int, a)) > > 24 > > What does the map() gain you over basic list comprehension: > sum( [int(i) for i in '3245325'] ) > ignoring any try/catch for int conversion errors > > IMHO, this is easier to understand, more Pythonic, and likely > faster. > > Regards, > Gora > > > ------------------------------ > > Message: 3 > Date: Thu, 09 May 2013 07:32:03 +0530 > From: Noufal Ibrahim > To: Gora Mohanty > Cc: Bangalore Python Users Group - India > Subject: Re: [BangPypers] Another qn. THanks for the basic of basic > qn\ > Message-ID: <87wqr8lxlw.fsf at sanitarium.localdomain> > Content-Type: text/plain > > Gora Mohanty writes: > > > On 8 May 2013 23:00, Jagadeesh N. Malakannavar > wrote: > >> I prefer to do it like this > >> > >>>>> a = list(str(3245325)) > >>>>> sum(map(int, a)) > >> 24 > > > > What does the map() gain you over basic list comprehension: > > sum( [int(i) for i in '3245325'] ) > > You could drop the []. No need to first generate and then iterate over > the list. > > [...] > > > -- > Cordially, > Noufal > http://nibrahim.net.in > > > ------------------------------ > > Message: 4 > Date: Thu, 9 May 2013 08:36:16 +0530 > From: Sriram Narayanan > To: Bangalore Python Users Group - India > Subject: [BangPypers] A Comparison of Mocking Frameworks > Message-ID: > < > CANiY96aZdbMWirgYjW6LfiNmT0h-bweyGQui4kdyh++mn4VLbA at mail.gmail.com> > Content-Type: text/plain; charset=ISO-8859-1 > > Hi everyone: > > A colleague pointed me to this comparison of mocking frameworks: > http://garybernhardt.github.io/python-mock-comparison/ > > -- Sriram > ------------------------------------ > Belenix: www.belenix.org > Twitter: @sriramnrn > > > ------------------------------ > > Message: 5 > Date: Thu, 9 May 2013 10:42:34 +0530 > From: Gora Mohanty > To: Noufal Ibrahim > Cc: Bangalore Python Users Group - India > Subject: Re: [BangPypers] Another qn. THanks for the basic of basic > qn\ > Message-ID: > < > CACiMRGLmAJ5_o6wYXyBa62ACmYmtM8WyD55sK3ZcQWSVEvabdw at mail.gmail.com> > Content-Type: text/plain; charset=ISO-8859-1 > > On 9 May 2013 07:32, Noufal Ibrahim wrote: > > Gora Mohanty writes: > > > >> On 8 May 2013 23:00, Jagadeesh N. Malakannavar > wrote: > >>> I prefer to do it like this > >>> > >>>>>> a = list(str(3245325)) > >>>>>> sum(map(int, a)) > >>> 24 > >> > >> What does the map() gain you over basic list comprehension: > >> sum( [int(i) for i in '3245325'] ) > > > > You could drop the []. No need to first generate and then iterate over > > the list. > > Ah, yes! Forgot that the expression would act as a generator. > Good catch! > > Regards, > Gora > > > ------------------------------ > > Message: 6 > Date: Thu, 9 May 2013 08:22:00 +0000 > From: "Prashant R. Naik" > To: "bangpypers at python.org" > Subject: [BangPypers] [Ticket #27] A Comparison of Mocking Frameworks > Message-ID: > > Content-Type: text/plain; charset="us-ascii" > > On May 09, 2013 @ 01:50 pm, bangpypers-bounces+prashant= > triconinfotech.com at python.org wrote: > > Hi everyone: > > A colleague pointed me to this comparison of mocking frameworks: > http://garybernhardt.github.io/python-mock-comparison/ > > -- Sriram > ------------------------------------ > Belenix: www.belenix.org > Twitter: @sriramnrn > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > > ________________________________ > This is an automated response. Your issue has been noted. We'll be in > touch soon. > > Please reply to this email or visit the URL below with any additional > details. > > http://DB01:9675/portal/view-help-request/27 > > > > ------------------------------ > > Message: 7 > Date: Thu, 9 May 2013 08:20:58 +0000 > From: "Prashant R. Naik" > To: "bangpypers at python.org" > Subject: [BangPypers] [Ticket #18] Another qn. THanks for the basic of > basic qn\ > Message-ID: > > Content-Type: text/plain; charset="us-ascii" > > On May 09, 2013 @ 01:50 pm, bangpypers-bounces+prashant= > triconinfotech.com at python.org wrote: > > On 9 May 2013 07:32, Noufal Ibrahim wrote: > > Gora Mohanty writes: > > > >> On 8 May 2013 23:00, Jagadeesh N. Malakannavar > wrote: > >>> I prefer to do it like this > >>> > >>>>>> a = list(str(3245325)) > >>>>>> sum(map(int, a)) > >>> 24 > >> > >> What does the map() gain you over basic list comprehension: > >> sum( [int(i) for i in '3245325'] ) > > > > You could drop the []. No need to first generate and then iterate over > > the list. > > Ah, yes! Forgot that the expression would act as a generator. > Good catch! > > Regards, > Gora > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > > ________________________________ > This is an automated response. Your issue has been noted. We'll be in > touch soon. > > Please reply to this email or visit the URL below with any additional > details. > > http://DB01:9675/portal/view-help-request/18 > > > > ------------------------------ > > Message: 8 > Date: Thu, 9 May 2013 08:22:47 +0000 > From: "Prashant R. Naik" > To: "bangpypers at python.org" > Subject: [BangPypers] [Ticket #29] Another qn. THanks for the basic of > basic qn\ > Message-ID: > > Content-Type: text/plain; charset="us-ascii" > > On May 09, 2013 @ 01:50 pm, bangpypers-bounces+prashant= > triconinfotech.com at python.org wrote: > > Gora Mohanty writes: > > > On 8 May 2013 23:00, Jagadeesh N. Malakannavar > wrote: > >> I prefer to do it like this > >> > >>>>> a = list(str(3245325)) > >>>>> sum(map(int, a)) > >> 24 > > > > What does the map() gain you over basic list comprehension: > > sum( [int(i) for i in '3245325'] ) > > You could drop the []. No need to first generate and then iterate over > the list. > > [...] > > > -- > Cordially, > Noufal > http://nibrahim.net.in > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > > ________________________________ > This is an automated response. Your issue has been noted. We'll be in > touch soon. > > Please reply to this email or visit the URL below with any additional > details. > > http://DB01:9675/portal/view-help-request/29 > > > > ------------------------------ > > Subject: Digest Footer > > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > > > ------------------------------ > > End of BangPypers Digest, Vol 69, Issue 7 > ***************************************** > -- Thanks, Jagadeesh N.Malakannavar From hrdspl at gmail.com Thu May 9 17:41:17 2013 From: hrdspl at gmail.com (hiharry danny) Date: Thu, 9 May 2013 21:11:17 +0530 Subject: [BangPypers] problem with python classes Message-ID: i have python 2.7.4......now suppose i have two new-style base classes , i.e. class ClassName(object): and the two base classes are related by __init__ constructor where the __init__ constructor of one base class is accessed by the __init property of the other base class , for example : class ClassOne(object): def __init__(self,value): self.value = value class ClassTwo(object): def __init__(self,inputvalues): self.values = [] for i in inputvalues: self.values.append(ClassOne(inputvalues)) if this be the case , then without using inheritance property of OOP ,i,e, without creating further new subclasses , how can I access other user defined methods of ClassOne class via Class Two class. The ouput value will be returned by a user defined method of ClassTwo but the computation will be done by a method of ClassOne which is called by the user defined method of class two ...? so what will be the solution ? From mnjagadeesh at gmail.com Thu May 9 19:15:25 2013 From: mnjagadeesh at gmail.com (Jagadeesh N. Malakannavar) Date: Thu, 9 May 2013 22:45:25 +0530 Subject: [BangPypers] BangPypers Digest, Vol 69, Issue 8 In-Reply-To: References: Message-ID: I tried to test the performance of list comprehension and map. I did not see much difference Here is my test localhost% python -mtimeit -s"sum(int(i) for i in '3245325')" 10000000 loops, best of 3: 0.02 usec per loop localhost% python -mtimeit -s"sum(map(int, str(3245325)))" 10000000 loops, best of 3: 0.02 usec per loop Thanks On Thu, May 9, 2013 at 3:30 PM, wrote: > Send BangPypers mailing list submissions to > bangpypers at python.org > > To subscribe or unsubscribe via the World Wide Web, visit > http://mail.python.org/mailman/listinfo/bangpypers > or, via email, send a message with subject or body 'help' to > bangpypers-request at python.org > > You can reach the person managing the list at > bangpypers-owner at python.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of BangPypers digest..." > > > Today's Topics: > > 1. [Ticket #49] Another qn. THanks for the basic of basic qn\ > (Prashant R. Naik) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Thu, 9 May 2013 08:23:48 +0000 > From: "Prashant R. Naik" > To: "bangpypers at python.org" > Subject: [BangPypers] [Ticket #49] Another qn. THanks for the basic of > basic qn\ > Message-ID: > > Content-Type: text/plain; charset="us-ascii" > > On May 09, 2013 @ 01:51 pm, bangpypers-bounces+prashant= > triconinfotech.com at python.org wrote: > > On 8 May 2013 23:00, Jagadeesh N. Malakannavar > wrote: > > I prefer to do it like this > > > >>>> a = list(str(3245325)) > >>>> sum(map(int, a)) > > 24 > > What does the map() gain you over basic list comprehension: > sum( [int(i) for i in '3245325'] ) > ignoring any try/catch for int conversion errors > > IMHO, this is easier to understand, more Pythonic, and likely > faster. > > Regards, > Gora > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > > ________________________________ > This is an automated response. Your issue has been noted. We'll be in > touch soon. > > Please reply to this email or visit the URL below with any additional > details. > > http://DB01:9675/portal/view-help-request/49 > > > > ------------------------------ > > Subject: Digest Footer > > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > > > ------------------------------ > > End of BangPypers Digest, Vol 69, Issue 8 > ***************************************** > -- Thanks, Jagadeesh N.Malakannavar From abdulmuneer at gmail.com Thu May 9 23:09:43 2013 From: abdulmuneer at gmail.com (Abdul Muneer) Date: Fri, 10 May 2013 02:39:43 +0530 Subject: [BangPypers] problem with python classes In-Reply-To: References: Message-ID: Hi, If it is necessary that the calculation has to be performed by ClassOne, use a classmethod. class ClassOne(object): def __init__(self, value): self.value = value @classmethod def calculate_value(cls, value): return new_value and in ClassTwo, change the relevant line to this one. self.values.append(ClassOne.calculate_value(inputvalues)) Regards, Abdul Muneer -- Follow me on Twitter: @abdulmuneer On Thu, May 9, 2013 at 9:11 PM, hiharry danny wrote: > i have python 2.7.4......now suppose i have two new-style base classes , > i.e. class ClassName(object): > and the two base classes are related by __init__ constructor where the > __init__ constructor of one base class is accessed by the __init property > of the other base class , for example : > > class ClassOne(object): > def __init__(self,value): > self.value = value > > class ClassTwo(object): > def __init__(self,inputvalues): > self.values = [] > for i in inputvalues: > self.values.append(ClassOne(inputvalues)) > > if this be the case , then without using inheritance property of OOP ,i,e, > without creating further new subclasses , how can I access other user > defined methods of ClassOne class via Class Two class. The ouput value will > be returned by a user defined method of ClassTwo but the computation will > be done by a method of ClassOne which is called by the user defined method > of class two ...? > > so what will be the solution ? > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > From steve at lonetwin.net Fri May 10 04:37:59 2013 From: steve at lonetwin.net (steve) Date: Fri, 10 May 2013 08:07:59 +0530 Subject: [BangPypers] problem with python classes In-Reply-To: References: Message-ID: <518C5D87.2080301@lonetwin.net> Hi, On Thursday 09 May 2013 09:11 PM, hiharry danny wrote: > i have python 2.7.4......now suppose i have two new-style base classes , > i.e. class ClassName(object): > and the two base classes are related by __init__ constructor where the > __init__ constructor of one base class is accessed by the __init property > of the other base class , for example : > > class ClassOne(object): > def __init__(self,value): > self.value = value > > class ClassTwo(object): > def __init__(self,inputvalues): > self.values = [] > for i in inputvalues: > self.values.append(ClassOne(inputvalues)) > In this last statement, what's the point of iterating over inputvalues ? Do you really want to create as many instances of ClassOne as the number of inputvalues ? Or was that for loop supposed to be something like: ... for i in inputvalues: self.values.append( ClassOne(i) ) ... > if this be the case , then without using inheritance property of OOP ,i,e, > without creating further new subclasses , how can I access other user > defined methods of ClassOne class via Class Two class. The ouput value will > be returned by a user defined method of ClassTwo but the computation will > be done by a method of ClassOne which is called by the user defined method > of class two ...? > > so what will be the solution ? Umm, firstly there is nothing about the above code that is specific to new style classes. Perhaps it would be better if you explained what exactly you are trying to achieve with a real example (as in, a proper use case). Although it is possible to do what you are requesting by simply doing something like this: >>> class ClassOne: ... def __init__(self,value): ... self.value = value ... def real_computation(self): ... self.value += 1 ... >>> >>> class ClassTwo: ... def __init__(self, inputvalues): ... self.values = [] ... for i in inputvalues: ... # - assuming that you wanted to create a bunch of ClassOne ... # instances based on inputvalues and populate self.values ... self.values.append( ClassOne(i) ) ... def increment_all(self): ... for i in self.values: ... i.real_computation() ... >>> o = ClassTwo([10, 20, 30, 42]) >>> [ i.value for i in o.values ] [10, 20, 30, 42] >>> o.increment_all() >>> [ i.value for i in o.values ] [11, 21, 31, 43] >>> ...it really doesn't make much sense to do something this way, given the limited information you have provided. cheers, - steve From noufal at nibrahim.net.in Fri May 10 06:17:14 2013 From: noufal at nibrahim.net.in (Noufal Ibrahim) Date: Fri, 10 May 2013 09:47:14 +0530 Subject: [BangPypers] problem with python classes In-Reply-To: (hiharry danny's message of "Thu, 9 May 2013 21:11:17 +0530") References: Message-ID: <87haibjwol.fsf@sanitarium.localdomain> hiharry danny writes: [...] > if this be the case , then without using inheritance property of OOP ,i,e, > without creating further new subclasses , how can I access other user > defined methods of ClassOne class via Class Two class. The ouput value will > be returned by a user defined method of ClassTwo but the computation will > be done by a method of ClassOne which is called by the user defined method > of class two ...? > > so what will be the solution ? Can you post back some examples of how you would use ClassTwo? The basic solution is to delegate all the work to the instances of ClassOne and return results. Whether you do this by accessing certain attributes or calling different functions will make the code different. [...] -- Cordially, Noufal http://nibrahim.net.in From kracethekingmaker at gmail.com Fri May 10 22:03:09 2013 From: kracethekingmaker at gmail.com (kracekumar ramaraju) Date: Sat, 11 May 2013 01:33:09 +0530 Subject: [BangPypers] May Meetup Message-ID: All, *May Bangpypers Meetup:* *Talks:* - How to use Map/Reduce in Python, what map/reduce is not. - Anand Chitipothu (1 hour) *Lighting Talks:* Please come forward to give lighting talks(5min - 10min) about frameworks, library, small snippet, class vs function etc ... *DateTime*: 05/18/2013 3.00 PM to 6.00 PM *Place*: Yet to decided Please bring your laptops and netcards if you would like present lighting talks we are looking for *Venue* and talks. Please reply to the email. -- * Thanks & Regards "Talk is cheap, show me the code" -- Linus Torvalds kracekumar www.kracekumar.com * From kracethekingmaker at gmail.com Sat May 11 09:40:42 2013 From: kracethekingmaker at gmail.com (kracekumar ramaraju) Date: Sat, 11 May 2013 13:10:42 +0530 Subject: [BangPypers] Bangpypers, general python stickers Message-ID: Hello Is anyone interested to create laptop, Mobile phone stickers for bangpypers, python india stickers, PyCon india . This is similar to Firefox stickers. I can take care of printing and distributing in meet ups. From abdulmuneer at gmail.com Sat May 11 09:46:33 2013 From: abdulmuneer at gmail.com (Abdul Muneer) Date: Sat, 11 May 2013 13:16:33 +0530 Subject: [BangPypers] Bangpypers, general python stickers In-Reply-To: References: Message-ID: +1 Regards, Abdul Muneer -- Follow me on Twitter: @abdulmuneer On Sat, May 11, 2013 at 1:10 PM, kracekumar ramaraju < kracethekingmaker at gmail.com> wrote: > Hello > > Is anyone interested to create laptop, Mobile phone stickers for > bangpypers, python india stickers, PyCon india . This is similar to Firefox > stickers. I can take care of printing and distributing in meet ups. > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > From aditya at thinrhino.net.in Sat May 11 09:55:16 2013 From: aditya at thinrhino.net.in (=?UTF-8?B?4KSG4KSm4KS/4KSk4KWN4KSvIOCksuCkmOCkvuCkn+Clhw==?=) Date: Sat, 11 May 2013 13:25:16 +0530 Subject: [BangPypers] Bangpypers, general python stickers In-Reply-To: References: Message-ID: On 11 May 2013 13:10, kracekumar ramaraju wrote: > Is anyone interested to create laptop, Mobile phone stickers for > bangpypers, python india stickers, PyCon india . This is similar to Firefox > stickers. I can take care of printing and distributing in meet ups. > ?+1 from Pune. I can help you distribute these stickers in our meets in Pune.? From pranjal.mittal.ece10 at iitbhu.ac.in Sat May 11 10:57:04 2013 From: pranjal.mittal.ece10 at iitbhu.ac.in (Pranjal Mittal) Date: Sat, 11 May 2013 14:27:04 +0530 Subject: [BangPypers] Bangpypers, general python stickers In-Reply-To: References: Message-ID: +1 (from Varanasi) Can help distribute these stickers at my college IIT (BHU) Varanasi and other local colleges. Some of our talented students (designers) might be interested in designing these stickers for Pycon India 2013. Il talk to them. Regards, - Pranjal On Sat, May 11, 2013 at 1:25 PM, ?????? ????? wrote: > On 11 May 2013 13:10, kracekumar ramaraju >wrote: > > > Is anyone interested to create laptop, Mobile phone stickers for > > bangpypers, python india stickers, PyCon india . This is similar to > Firefox > > stickers. I can take care of printing and distributing in meet ups. > > > > ?+1 from Pune. I can help you distribute these stickers in our meets in > Pune.? > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > -- -- B.Tech. 2014 Indian Institute of Technology, BHU, Varanasi, 221005 Uttar Pradesh, India From harish.shastry at gmail.com Sat May 11 11:27:22 2013 From: harish.shastry at gmail.com (Harish Vishwanath) Date: Sat, 11 May 2013 14:57:22 +0530 Subject: [BangPypers] Bangpypers, general python stickers In-Reply-To: References: Message-ID: Cool idea :-) On May 11, 2013 2:27 PM, "Pranjal Mittal" wrote: > +1 (from Varanasi) Can help distribute these stickers at my college IIT > (BHU) Varanasi and other local colleges. > > Some of our talented students (designers) might be interested in designing > these stickers for Pycon India 2013. Il talk to them. > > > > Regards, > - Pranjal > > > > On Sat, May 11, 2013 at 1:25 PM, ?????? ????? >wrote: > > > On 11 May 2013 13:10, kracekumar ramaraju > >wrote: > > > > > Is anyone interested to create laptop, Mobile phone stickers for > > > bangpypers, python india stickers, PyCon india . This is similar to > > Firefox > > > stickers. I can take care of printing and distributing in meet ups. > > > > > > > ?+1 from Pune. I can help you distribute these stickers in our meets in > > Pune.? > > _______________________________________________ > > BangPypers mailing list > > BangPypers at python.org > > http://mail.python.org/mailman/listinfo/bangpypers > > > > > > -- > -- > B.Tech. 2014 > Indian Institute of Technology, BHU, > Varanasi, 221005 > Uttar Pradesh, > India > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > From saager.mhatre at gmail.com Sat May 11 21:23:02 2013 From: saager.mhatre at gmail.com (Saager Mhatre) Date: Sun, 12 May 2013 00:53:02 +0530 Subject: [BangPypers] [Ticket #27] A Comparison of Mocking Frameworks In-Reply-To: References: Message-ID: That list is pretty dated. If I were starting a new project I'd just reach for doublex . It's got, by far, the nicest API of test doubles I've encountered. - d On Thu, May 9, 2013 at 1:52 PM, Prashant R. Naik < prashant at triconinfotech.com> wrote: > On May 09, 2013 @ 01:50 pm, bangpypers-bounces+prashant= > triconinfotech.com at python.org wrote: > > Hi everyone: > > A colleague pointed me to this comparison of mocking frameworks: > http://garybernhardt.github.io/python-mock-comparison/ > > -- Sriram > ------------------------------------ > Belenix: www.belenix.org > Twitter: @sriramnrn > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > > ________________________________ > This is an automated response. Your issue has been noted. We'll be in > touch soon. > > Please reply to this email or visit the URL below with any additional > details. > > http://DB01:9675/portal/view-help-request/27 > > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > From saager.mhatre at gmail.com Sat May 11 21:25:31 2013 From: saager.mhatre at gmail.com (Saager Mhatre) Date: Sun, 12 May 2013 00:55:31 +0530 Subject: [BangPypers] A Comparison of Mocking Frameworks In-Reply-To: References: Message-ID: On Thu, May 9, 2013 at 8:36 AM, Sriram Narayanan wrote: > Hi everyone: > > A colleague pointed me to this comparison of mocking frameworks: > http://garybernhardt.github.io/python-mock-comparison/ That list is pretty dated. If I were starting a new project I'd just reach for doublex . It's got, by far, the nicest API of test doubles I've encountered. - d From metafusion at gmail.com Mon May 13 14:04:51 2013 From: metafusion at gmail.com (Shuhaib Shariff) Date: Mon, 13 May 2013 17:34:51 +0530 Subject: [BangPypers] [JOBS] Python Developers with 1-2 Yrs Experience Message-ID: DoubleSpring seeks passionate PYTHON developers with experience in building or contributing to Open Source projects. We are constantly rolling out new products so the right individual would be able to write clean code and work in a fast pace environment. We highly value native ability, passion and the right attitude. Requirements - Technical proficiency with Python and Django. - Technical proficiency in JavaScript. - Experience with MySQL / PgSQL. - Experience with MVC design patterns and solid algorithm skills. - 1-2 years of industry experience - B.E. in Computer Science or equivalent degree required. Location: Bangalore How to apply Send your resume to: careers at doublespring.com From karra.etc at gmail.com Mon May 13 14:38:46 2013 From: karra.etc at gmail.com (Sriram Karra) Date: Mon, 13 May 2013 18:08:46 +0530 Subject: [BangPypers] Open Source API Management platforms in Python Message-ID: Is there such a thing? I am looking for something along the lines of Mashery or Apiphany - roughly. From gora at mimirtech.com Mon May 13 15:09:43 2013 From: gora at mimirtech.com (Gora Mohanty) Date: Mon, 13 May 2013 18:39:43 +0530 Subject: [BangPypers] Open Source API Management platforms in Python In-Reply-To: References: Message-ID: On 13 May 2013 18:08, Sriram Karra wrote: > Is there such a thing? I am looking for something along the lines of > Mashery or Apiphany - roughly. I doubt that there would be a complete product like Mashery that is open source, but you could build one using Django and Tastypie. Regards, Gora From talk-noreply at google.com Mon May 13 20:12:08 2013 From: talk-noreply at google.com (Google Talk) Date: Mon, 13 May 2013 11:12:08 -0700 Subject: [BangPypers] Invitation to use Google Talk Message-ID: ----------------------------------------------------------------------- You've been invited by Arvind K to use Google Talk. If you already have a Google account, log in to Gmail and accept this chat invitation: http://mail.google.com/mail/b-7b885f4b97-f4ffcb59be-z45929MwgPV8nScP31pN-2tW8c8 To sign up for a Google account and get started with Google Talk, you can visit: http://mail.google.com/mail/a-7b885f4b97-f4ffcb59be-z45929MwgPV8nScP31pN-2tW8c8?pc=en_gb-rf---a Learn more at: http://www.google.com/intl/en/landing/accounts/ Thanks, The Google Team From fagun.bhavsar at gmail.com Tue May 14 07:29:59 2013 From: fagun.bhavsar at gmail.com (Fagun Bhavsar) Date: Tue, 14 May 2013 10:59:59 +0530 Subject: [BangPypers] Selenium with Python training Message-ID: <5191CBD7.4060409@gmail.com> Hi, Is there anyone in Bangalore, who conducts or willing to conduct training on Testing automation using Selenium and Python? Or any reference in this regard? Please let me know. Thanks in advance. Regards, Fagun From gamebit07 at gmail.com Tue May 14 12:18:11 2013 From: gamebit07 at gmail.com (Saket Bhushan) Date: Tue, 14 May 2013 15:48:11 +0530 Subject: [BangPypers] BangPypers Digest, Vol 69, Issue 13 In-Reply-To: References: Message-ID: On Tue, May 14, 2013 at 3:30 PM, wrote: > Send BangPypers mailing list submissions to > bangpypers at python.org > > To subscribe or unsubscribe via the World Wide Web, visit > http://mail.python.org/mailman/listinfo/bangpypers > or, via email, send a message with subject or body 'help' to > bangpypers-request at python.org > > You can reach the person managing the list at > bangpypers-owner at python.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of BangPypers digest..." > > > Today's Topics: > > 1. [JOBS] Python Developers with 1-2 Yrs Experience (Shuhaib Shariff) > 2. Open Source API Management platforms in Python (Sriram Karra) > 3. Re: Open Source API Management platforms in Python (Gora Mohanty) > 4. Invitation to use Google Talk (Google Talk) > 5. Selenium with Python training (Fagun Bhavsar) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Mon, 13 May 2013 17:34:51 +0530 > From: Shuhaib Shariff > To: bangpypers at python.org > Subject: [BangPypers] [JOBS] Python Developers with 1-2 Yrs Experience > Message-ID: > < > CAAAXCkw6TQH46KNT3SkwSvoB4KNqr_UMviOzQSy8i3a0e1VooQ at mail.gmail.com> > Content-Type: text/plain; charset=ISO-8859-1 > > DoubleSpring seeks passionate PYTHON developers with experience in building > or contributing to Open Source projects. We are constantly rolling out new > products so the right individual would be able to write clean code and work > in a fast pace environment. > > We highly value native ability, passion and the right attitude. > > Requirements > - Technical proficiency with Python and Django. > - Technical proficiency in JavaScript. > - Experience with MySQL / PgSQL. > - Experience with MVC design patterns and solid algorithm skills. > - 1-2 years of industry experience > - B.E. in Computer Science or equivalent degree required. > > Location: Bangalore > > How to apply > Send your resume to: careers at doublespring.com > > > ------------------------------ > > Message: 2 > Date: Mon, 13 May 2013 18:08:46 +0530 > From: Sriram Karra > To: Bangalore Python Users Group - India > Subject: [BangPypers] Open Source API Management platforms in Python > Message-ID: > L1DhLE+ycVA at mail.gmail.com> > Content-Type: text/plain; charset=ISO-8859-1 > > Is there such a thing? I am looking for something along the lines of > Mashery or Apiphany - roughly. > > > ------------------------------ > > Message: 3 > Date: Mon, 13 May 2013 18:39:43 +0530 > From: Gora Mohanty > To: Bangalore Python Users Group - India > Subject: Re: [BangPypers] Open Source API Management platforms in > Python > Message-ID: > iEPkNuVFcQOGKe-rzq86isc9O7cUVSmoXCUYA at mail.gmail.com> > Content-Type: text/plain; charset=ISO-8859-1 > > On 13 May 2013 18:08, Sriram Karra wrote: > > Is there such a thing? I am looking for something along the lines of > > Mashery or Apiphany - roughly. > > I doubt that there would be a complete product > like Mashery that is open source, but you could > build one using Django and Tastypie. > > Regards, > Gora > > > ------------------------------ > > Message: 4 > Date: Mon, 13 May 2013 11:12:08 -0700 > From: Google Talk > To: bangpypers at python.org > Subject: [BangPypers] Invitation to use Google Talk > Message-ID: > < > CAAyXcGAhXA+b_63ukuZwcg4K7ji23JTL-b-6bHdFTHLCd07Kiw at mail.gmail.com> > Content-Type: text/plain; charset=UTF-8 > > ----------------------------------------------------------------------- > > You've been invited by Arvind K to use Google Talk. > > If you already have a Google account, log in to Gmail and accept this > chat invitation: > > http://mail.google.com/mail/b-7b885f4b97-f4ffcb59be-z45929MwgPV8nScP31pN-2tW8c8 > > To sign up for a Google account and get started with Google Talk, you can > visit: > > http://mail.google.com/mail/a-7b885f4b97-f4ffcb59be-z45929MwgPV8nScP31pN-2tW8c8?pc=en_gb-rf---a > > Learn more at: > http://www.google.com/intl/en/landing/accounts/ > > > Thanks, > The Google Team > > > ------------------------------ > > Message: 5 > Date: Tue, 14 May 2013 10:59:59 +0530 > From: Fagun Bhavsar > To: bangpypers at python.org > Subject: [BangPypers] Selenium with Python training > Message-ID: <5191CBD7.4060409 at gmail.com> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > Hi, > > Is there anyone in Bangalore, who conducts or willing to conduct > training on Testing automation using Selenium and Python? Or any > reference in this regard? Please let me know. > > What exactly are your needs, let me know, I can be of some help. > Thanks in advance. > Welcome! > > Regards, > Fagun > > > ------------------------------ > > Subject: Digest Footer > > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > > > ------------------------------ > > End of BangPypers Digest, Vol 69, Issue 13 > ****************************************** > -- Regards, Saket Bhushan twitter , linkedin, myshareplex From aditya at thinrhino.net.in Tue May 14 13:48:11 2013 From: aditya at thinrhino.net.in (=?UTF-8?B?4KSG4KSm4KS/4KSk4KWN4KSvIOCksuCkmOCkvuCkn+Clhw==?=) Date: Tue, 14 May 2013 17:18:11 +0530 Subject: [BangPypers] BangPypers Digest, Vol 69, Issue 13 In-Reply-To: References: Message-ID: On 14 May 2013 15:48, Saket Bhushan wrote: > On Tue, May 14, 2013 at 3:30 PM, wrote: > > > Send BangPypers mailing list submissions to > Thank you for forwarding the digest back to the group :) From mandarvaze at gmail.com Tue May 14 18:39:21 2013 From: mandarvaze at gmail.com (=?UTF-8?B?TWFuZGFyIFZhemUgLyDgpK7gpILgpKbgpL7gpLAg4KS14KSd4KWH?=) Date: Tue, 14 May 2013 22:09:21 +0530 Subject: [BangPypers] BangPypers Digest, Vol 69, Issue 13 In-Reply-To: References: Message-ID: On Tue, May 14, 2013 at 5:18 PM, ?????? ????? wrote: > On 14 May 2013 15:48, Saket Bhushan wrote: > > > On Tue, May 14, 2013 at 3:30 PM, wrote: > > > > > Send BangPypers mailing list submissions to > > > > Thank you for forwarding the digest back to the group :) > +1 From modi.konark at gmail.com Wed May 15 11:07:56 2013 From: modi.konark at gmail.com (konark modi) Date: Wed, 15 May 2013 14:37:56 +0530 Subject: [BangPypers] ETL Tools / Frameworks in Python ! Message-ID: Hi I was evaluating ETL tools/frameworks and Reporting Suites for my current project. All the tools that I came across specially the free ones are all written in Java. Just wanted to understand what are the other options of such tools / frameworks in Python ? ETL Purposes : Talend, Kattle Reporting : Pentaho, BIRT ,Qlickview Regards Konark From ramkrsna at gmail.com Wed May 15 13:19:23 2013 From: ramkrsna at gmail.com (Ramakrishna Reddy) Date: Wed, 15 May 2013 16:49:23 +0530 Subject: [BangPypers] ETL Tools / Frameworks in Python ! In-Reply-To: References: Message-ID: On Wed, May 15, 2013 at 2:37 PM, konark modi wrote: > Hi > > I was evaluating ETL tools/frameworks and Reporting Suites for my current > project. > > All the tools that I came across specially the free ones are all written in > Java. Just wanted to understand what are the other options of such tools / > frameworks in Python ? The closest framework is Brewery, http://brewery.databrewery.org/ and you could use python cubes for OLAP/ Browsing / Reporting http://cubes.databrewery.org/index.html I'm not aware of any other python tools in a large scale Business Intelligence. Python is used a lot in BI, but most of the apps seem to be developed in house. regards -- Ramakrishna Reddy GPG Key ID:67E226F5 Fingerprint = BA51 9241 72B9 7DBD 1A9A E717 ABB2 9BAD 67E2 26F5 From kracethekingmaker at gmail.com Thu May 16 09:41:04 2013 From: kracethekingmaker at gmail.com (kracekumar ramaraju) Date: Thu, 16 May 2013 13:11:04 +0530 Subject: [BangPypers] May Meetup In-Reply-To: References: Message-ID: We have meet up saturday, still we don't have venue. CIS & HasGeek Venue can't be used this week. Is there any one in the list can offer a place which offer 25 seater + projector ? On Sat, May 11, 2013 at 1:33 AM, kracekumar ramaraju < kracethekingmaker at gmail.com> wrote: > All, > > *May Bangpypers Meetup:* > > *Talks:* > > - How to use Map/Reduce in Python, what map/reduce is not. - Anand > Chitipothu (1 hour) > > *Lighting Talks:* > > Please come forward to give lighting talks(5min - 10min) about frameworks, > library, small snippet, class vs function etc ... > > > *DateTime*: 05/18/2013 3.00 PM to 6.00 PM > > *Place*: Yet to decided > > Please bring your laptops and netcards if you would like present lighting > talks > > we are looking for *Venue* and talks. Please reply to the email. > > -- > * > Thanks & Regards > > "Talk is cheap, show me the code" -- Linus Torvalds > kracekumar > www.kracekumar.com > * > -- * Thanks & Regards "Talk is cheap, show me the code" -- Linus Torvalds kracekumar www.kracekumar.com * From sriramnrn at gmail.com Fri May 17 04:56:10 2013 From: sriramnrn at gmail.com (Sriram Narayanan) Date: Fri, 17 May 2013 08:26:10 +0530 Subject: [BangPypers] May Meetup In-Reply-To: References: Message-ID: A colleague wants to help. I've sent to you an offline mail with his contact info. Sriram On May 16, 2013 1:11 PM, "kracekumar ramaraju" wrote: > We have meet up saturday, still we don't have venue. CIS & HasGeek Venue > can't be used this week. Is there any one in the list can offer a place > which offer 25 seater + projector ? > > > On Sat, May 11, 2013 at 1:33 AM, kracekumar ramaraju < > kracethekingmaker at gmail.com> wrote: > > > All, > > > > *May Bangpypers Meetup:* > > > > *Talks:* > > > > - How to use Map/Reduce in Python, what map/reduce is not. - Anand > > Chitipothu (1 hour) > > > > *Lighting Talks:* > > > > Please come forward to give lighting talks(5min - 10min) about > frameworks, > > library, small snippet, class vs function etc ... > > > > > > *DateTime*: 05/18/2013 3.00 PM to 6.00 PM > > > > *Place*: Yet to decided > > > > Please bring your laptops and netcards if you would like present lighting > > talks > > > > we are looking for *Venue* and talks. Please reply to the email. > > > > -- > > * > > Thanks & Regards > > > > "Talk is cheap, show me the code" -- Linus Torvalds > > kracekumar > > www.kracekumar.com > > * > > > > > > -- > * > Thanks & Regards > > "Talk is cheap, show me the code" -- Linus Torvalds > kracekumar > www.kracekumar.com > * > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > From jtoomim at jtoomim.org Fri May 17 05:20:03 2013 From: jtoomim at jtoomim.org (Jonathan Toomim) Date: Fri, 17 May 2013 08:50:03 +0530 Subject: [BangPypers] May Meetup In-Reply-To: References: Message-ID: <5195A1E3.4030506@jtoomim.org> We can host BangPypers's May meetup at Bangalore Alpha Lab in JP Nagar 2nd Phase. Address: #1316/C, 1st Floor, 9th Cross Rd JP Nagar 2nd Phase We're directly opposite the Venkateshwara temple. The entrance pathway is to the left of a pharmacy. Look for a sign saying Fresco Informatics; that's us. On 5/16/2013 1:11 PM, kracekumar ramaraju wrote: > We have meet up saturday, still we don't have venue. CIS & HasGeek Venue > can't be used this week. Is there any one in the list can offer a place > which offer 25 seater + projector ? > > > On Sat, May 11, 2013 at 1:33 AM, kracekumar ramaraju < > kracethekingmaker at gmail.com> wrote: > >> All, >> >> *May Bangpypers Meetup:* >> >> *Talks:* >> >> - How to use Map/Reduce in Python, what map/reduce is not. - Anand >> Chitipothu (1 hour) >> >> *Lighting Talks:* >> >> Please come forward to give lighting talks(5min - 10min) about frameworks, >> library, small snippet, class vs function etc ... >> >> >> *DateTime*: 05/18/2013 3.00 PM to 6.00 PM >> >> *Place*: Yet to decided >> >> Please bring your laptops and netcards if you would like present lighting >> talks >> >> we are looking for *Venue* and talks. Please reply to the email. >> >> -- >> * >> Thanks & Regards >> >> "Talk is cheap, show me the code" -- Linus Torvalds >> kracekumar >> www.kracekumar.com >> * >> > > From venkat83 at gmail.com Fri May 17 06:24:42 2013 From: venkat83 at gmail.com (Venkatraman S) Date: Fri, 17 May 2013 09:54:42 +0530 Subject: [BangPypers] May Meetup In-Reply-To: <5195A1E3.4030506@jtoomim.org> References: <5195A1E3.4030506@jtoomim.org> Message-ID: On Fri, May 17, 2013 at 8:50 AM, Jonathan Toomim wrote: > We can host BangPypers's May meetup at Bangalore Alpha Lab < > http://bangalorealphalab.in/> in JP Nagar 2nd Phase. > > Address: > #1316/C, 1st Floor, > 9th Cross Rd > JP Nagar 2nd Phase > > We're directly opposite the Venkateshwara temple. The entrance pathway is > to the left of a pharmacy. Look for a sign saying Fresco Informatics; > that's us. > This is Neat. Always wanted to visit BAL and also breaking my online-sojourn .. and my first BangPypers meet ;) -V @venkasub From kracethekingmaker at gmail.com Fri May 17 06:54:30 2013 From: kracethekingmaker at gmail.com (kracekumar ramaraju) Date: Fri, 17 May 2013 10:24:30 +0530 Subject: [BangPypers] May Meetup In-Reply-To: References: <5195A1E3.4030506@jtoomim.org> Message-ID: This month meetup we will be hosting in Bangalore Alpha labs. 1316-C, 9th Cross, 80 feet road, JP Nagar 2nd Phase, Bangalore. Do RSVP and contact me offline for Talks/Lighting Talks. http://www.meetup.com/BangPypers/events/118780332/ On Fri, May 17, 2013 at 9:54 AM, Venkatraman S wrote: > On Fri, May 17, 2013 at 8:50 AM, Jonathan Toomim >wrote: > > > We can host BangPypers's May meetup at Bangalore Alpha Lab < > > http://bangalorealphalab.in/> in JP Nagar 2nd Phase. > > > > Address: > > #1316/C, 1st Floor, > > 9th Cross Rd > > JP Nagar 2nd Phase > > > > We're directly opposite the Venkateshwara temple. The entrance pathway is > > to the left of a pharmacy. Look for a sign saying Fresco Informatics; > > that's us. > > > > This is Neat. Always wanted to visit BAL and also breaking my > online-sojourn .. and my first BangPypers meet ;) > > -V > @venkasub > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > -- * Thanks & Regards "Talk is cheap, show me the code" -- Linus Torvalds kracekumar www.kracekumar.com * From metafusion at gmail.com Sun May 19 11:32:38 2013 From: metafusion at gmail.com (Shuhaib Shariff) Date: Sun, 19 May 2013 15:02:38 +0530 Subject: [BangPypers] [JOBS] Python Developer with 2 Yrs Experience Message-ID: DoubleSpring seeks passionate PYTHON developers with experience in building or contributing to Open Source projects. We are constantly rolling out new products so the right individual would be able to write clean code and work in a fast pace environment. We highly value native ability, passion and the right attitude. Requirements - Technical proficiency with Python and Django. - Technical proficiency in JavaScript. - Experience with MySQL / PgSQL. - Experience with MVC design patterns and solid algorithm skills. - 1-2 years of industry experience - B.E. in Computer Science or equivalent degree required. Location: Bangalore How to apply Send your resume to: careers at doublespring.com From anandology at gmail.com Mon May 20 13:24:49 2013 From: anandology at gmail.com (Anand Chitipothu) Date: Mon, 20 May 2013 16:54:49 +0530 Subject: [BangPypers] [Commercial] Advanced Python Course Message-ID: Hi, I'm conducting a three-day workshop on Advanced Python programming on May 24-26 (this Friday and weekend). This workshop is organized in association with HasGeek and targeted at experienced Python programmers, who would like to learn Python internals, advanced techniques and best practices for writing Python libraries and frameworks. For more details and registration, please visit the course page at: http://advancedpython.hasgeek.com/. Please contact me offline, if you have any questions about the workshop. Thanks, Anand http://anandology.com/ From davidsnt at gmail.com Mon May 20 13:54:22 2013 From: davidsnt at gmail.com (davidsnt) Date: Mon, 20 May 2013 17:24:22 +0530 Subject: [BangPypers] [Commercial] Advanced Python Course In-Reply-To: References: Message-ID: Hi Anand, Will you be having one more session on the same topic some time mid next month? This is a little short notice, I might miss out this time. Regards, Davidsanthosh L On Mon, May 20, 2013 at 4:54 PM, Anand Chitipothu wrote: > Hi, > > I'm conducting a three-day workshop on Advanced Python programming on May > 24-26 (this Friday and weekend). > > This workshop is organized in association with HasGeek > and > targeted at experienced Python programmers, who would like to learn Python > internals, advanced techniques and best practices for writing Python > libraries and frameworks. > > For more details and registration, please visit the course page at: > http://advancedpython.hasgeek.com/. > > Please contact me offline, if you have any questions about the workshop. > > Thanks, > Anand > http://anandology.com/ > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > From anandology at gmail.com Mon May 20 14:01:13 2013 From: anandology at gmail.com (Anand Chitipothu) Date: Mon, 20 May 2013 17:31:13 +0530 Subject: [BangPypers] [Commercial] Advanced Python Course In-Reply-To: References: Message-ID: Hi Davidsanthosh, The next course will be after 2 months. I do one course a month, alternating between basic and advanced courses. I'm doing basic Python course in June, so the next advanced python course will like be in July. Anand On Mon, May 20, 2013 at 5:24 PM, davidsnt wrote: > Hi Anand, > > Will you be having one more session on the same topic some time mid next > month? This is a little short notice, I might miss out this time. > > Regards, > Davidsanthosh L > > > On Mon, May 20, 2013 at 4:54 PM, Anand Chitipothu >wrote: > > > Hi, > > > > I'm conducting a three-day workshop on Advanced Python programming on May > > 24-26 (this Friday and weekend). > > > > This workshop is organized in association with HasGeek > > and > > targeted at experienced Python programmers, who would like to learn > Python > > internals, advanced techniques and best practices for writing Python > > libraries and frameworks. > > > > For more details and registration, please visit the course page at: > > http://advancedpython.hasgeek.com/. > > > > Please contact me offline, if you have any questions about the workshop. > > > > Thanks, > > Anand > > http://anandology.com/ > > _______________________________________________ > > BangPypers mailing list > > BangPypers at python.org > > http://mail.python.org/mailman/listinfo/bangpypers > > > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > -- Anand http://anandology.com/ From shabda at agiliq.com Tue May 21 13:02:08 2013 From: shabda at agiliq.com (Shabda Raaj) Date: Tue, 21 May 2013 16:32:08 +0530 Subject: [BangPypers] [Announce] Django Mason - A component manager for Django Message-ID: Tldr: github.com/agiliq/mason Details: We are working on a component manager for Django. Inspired by Yeoman/Bower/Bootsrap generator. django-mason.py lets you pick and choose the components you need and configures them for you so you can start your project easy and clean. This is very early preview - so feedback is welcome and very appreciated. -- Thanks, Shabda Agiliq.com - Building Amazing Apps agiliq.com/blog/ | github.com/agiliq US: +13152854388 | IN: +919949997612 | Skype: shabda.raaj Our Android Apps | Our iOS Apps From venkat83 at gmail.com Tue May 21 13:21:39 2013 From: venkat83 at gmail.com (Venkatraman S) Date: Tue, 21 May 2013 16:51:39 +0530 Subject: [BangPypers] [Announce] Django Mason - A component manager for Django In-Reply-To: References: Message-ID: A few years back(2009?), I remember there was something similar online(forgot the name of the service) -- An app wherein you can define your structures, apps, packages, files (almost everything) online..and you could get an export of the whole project. -V @venkasub On Tue, May 21, 2013 at 4:32 PM, Shabda Raaj wrote: > Tldr: > > github.com/agiliq/mason > > Details: > > We are working on a component manager for Django. Inspired by > Yeoman/Bower/Bootsrap generator. > > django-mason.py lets you pick and choose the components you need and > configures them for you so you can start your project easy and clean. > > This is very early preview - so feedback is welcome and very appreciated. > > -- > Thanks, > Shabda > > Agiliq.com - Building Amazing Apps > agiliq.com/blog/ | github.com/agiliq > US: +13152854388 | IN: +919949997612 | Skype: shabda.raaj > Our Android Apps > | Our > iOS Apps > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > From vnbang2003 at yahoo.com Wed May 22 11:21:45 2013 From: vnbang2003 at yahoo.com (vijay) Date: Wed, 22 May 2013 17:21:45 +0800 (SGT) Subject: [BangPypers] Volunteer for Managing pycon India Website content Message-ID: <1369214505.80329.YahooMailNeo@web192201.mail.sg3.yahoo.com> Hi All, ? ?We need couple of people to take charge of PyCon India website. ? ?Tasks include tweaking the website software and manage the content. ? ?Code is on github. https://github.com/pythonindia/pyconindia2013 Please reply to this thread if you are interested. With Thanks Vijay From modi.konark at gmail.com Wed May 22 13:57:06 2013 From: modi.konark at gmail.com (konark modi) Date: Wed, 22 May 2013 17:27:06 +0530 Subject: [BangPypers] [Inpycon] Volunteer for Managing pycon India Website content In-Reply-To: <1369214505.80329.YahooMailNeo@web192201.mail.sg3.yahoo.com> References: <1369214505.80329.YahooMailNeo@web192201.mail.sg3.yahoo.com> Message-ID: Hi Would like to contribute. Please let me know, how I could help. Regards Konark On Wed, May 22, 2013 at 2:51 PM, vijay wrote: > Hi All, > We need couple of people to take charge of PyCon India website. > Tasks include tweaking the website software and manage the content. > Code is on github. > https://github.com/pythonindia/pyconindia2013 > > Please reply to this thread if you are interested. > > With Thanks > Vijay > > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > http://mail.python.org/mailman/listinfo/inpycon > > From gora at mimirtech.com Wed May 22 14:03:38 2013 From: gora at mimirtech.com (Gora Mohanty) Date: Wed, 22 May 2013 17:33:38 +0530 Subject: [BangPypers] Volunteer for Managing pycon India Website content In-Reply-To: <1369214505.80329.YahooMailNeo@web192201.mail.sg3.yahoo.com> References: <1369214505.80329.YahooMailNeo@web192201.mail.sg3.yahoo.com> Message-ID: On 22 May 2013 14:51, vijay wrote: > Hi All, > We need couple of people to take charge of PyCon India website. > Tasks include tweaking the website software and manage the content. > Code is on github. > https://github.com/pythonindia/pyconindia2013 > > Please reply to this thread if you are interested. [...] We would be glad to get involved. From an initial look at the codebase, this looks like a static site, plus Hasgeek's funnel. Is that correct? Regards, Gora From sayan at hackerearth.com Wed May 22 14:08:43 2013 From: sayan at hackerearth.com (Sayan Chowdhury) Date: Wed, 22 May 2013 17:38:43 +0530 Subject: [BangPypers] Volunteer for Managing pycon India Website content In-Reply-To: <1369214505.80329.YahooMailNeo@web192201.mail.sg3.yahoo.com> References: <1369214505.80329.YahooMailNeo@web192201.mail.sg3.yahoo.com> Message-ID: On Wed, May 22, 2013 at 2:51 PM, vijay wrote: > Hi All, > We need couple of people to take charge of PyCon India website. > Tasks include tweaking the website software and manage the content. > Code is on github. > https://github.com/pythonindia/pyconindia2013 > > Please reply to this thread if you are interested. > I would interested in to volunteer. Thanks, Regards, Sayan Chowdhury http://fosswithme.wordpress.com From anandology at gmail.com Wed May 22 14:21:01 2013 From: anandology at gmail.com (Anand Chitipothu) Date: Wed, 22 May 2013 17:51:01 +0530 Subject: [BangPypers] Volunteer for Managing pycon India Website content In-Reply-To: References: <1369214505.80329.YahooMailNeo@web192201.mail.sg3.yahoo.com> Message-ID: On Wed, May 22, 2013 at 5:33 PM, Gora Mohanty wrote: > On 22 May 2013 14:51, vijay wrote: > > Hi All, > > We need couple of people to take charge of PyCon India website. > > Tasks include tweaking the website software and manage the content. > > Code is on github. > > https://github.com/pythonindia/pyconindia2013 > > > > Please reply to this thread if you are interested. > [...] > > We would be glad to get involved. From an initial > look at the codebase, this looks like a static site, > plus Hasgeek's funnel. Is that correct? > Yes. It is just a static file for now. We need to add more content to it. Vijay, can you please suggest what changes you want to make. If someone can make those changes and send me a pull request, I can take care of merging them and deploying. I'm working on setting up funnel for talk submission. It should be ready by tomorrow. We can push CFP out once it is ready. Anand From srinivasaenergy at gmail.com Wed May 22 14:27:52 2013 From: srinivasaenergy at gmail.com (Srinivasa Rao) Date: Wed, 22 May 2013 17:57:52 +0530 Subject: [BangPypers] Volunteer for Managing pycon India Website content In-Reply-To: References: <1369214505.80329.YahooMailNeo@web192201.mail.sg3.yahoo.com> Message-ID: Hi I would like to work please let me know . Thanks & Regards Srinivasa Rao 9490682315 On Wed, May 22, 2013 at 5:51 PM, Anand Chitipothu wrote: > On Wed, May 22, 2013 at 5:33 PM, Gora Mohanty wrote: > > > On 22 May 2013 14:51, vijay wrote: > > > Hi All, > > > We need couple of people to take charge of PyCon India website. > > > Tasks include tweaking the website software and manage the content. > > > Code is on github. > > > https://github.com/pythonindia/pyconindia2013 > > > > > > Please reply to this thread if you are interested. > > [...] > > > > We would be glad to get involved. From an initial > > look at the codebase, this looks like a static site, > > plus Hasgeek's funnel. Is that correct? > > > > Yes. It is just a static file for now. We need to add more content to it. > > Vijay, can you please suggest what changes you want to make. If someone can > make those changes and send me a pull request, I can take care of merging > them and deploying. > > I'm working on setting up funnel for talk submission. It should be ready by > tomorrow. We can push CFP out once it is ready. > > Anand > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > From vnbang2003 at yahoo.com Wed May 22 15:59:00 2013 From: vnbang2003 at yahoo.com (vijay) Date: Wed, 22 May 2013 21:59:00 +0800 (SGT) Subject: [BangPypers] Volunteer for Managing pycon India Website content In-Reply-To: References: <1369214505.80329.YahooMailNeo@web192201.mail.sg3.yahoo.com> Message-ID: <1369231140.18764.YahooMailNeo@web192205.mail.sg3.yahoo.com> Konark,mukesh,Gora,sayan and Rahul thanks for?volunteering?to help us. As Anand C said can you guys send a pull request to?https://github.com/pythonindia/pyconindia2013 We basically to work in showing this information 1) ?Home section- Like venue , about us. 2) ?CFP section- Explain term and condition and display link to submit 3) ?Sponsor's section with 4 slot 1)?platinum?2) gold 3) silver 4) partners 4) ?Twitter?plugin 5) ?Keynote speaker section 6) ?Registration section 7) ?Blog/New section 8) ?FAQ section 9) ?Schedule - once Talk selection is done 10) Volunteer section to recognize?volunteer?for?their?support( my plan is to include this to motivate volunteer) Do let me know if any section is missed. CFP is been worked by Anand C and Ramki, so we can pick other section and work on the same. @Anand C please do provide us?instruction on?how to set up locally and guide us on how to contribute faster. With Thanks Vijay ? ? ________________________________ From: Anand Chitipothu To: Bangalore Python Users Group - India Sent: Wednesday, 22 May 2013 5:51 PM Subject: Re: [BangPypers] Volunteer for Managing pycon India Website content On Wed, May 22, 2013 at 5:33 PM, Gora Mohanty wrote: > On 22 May 2013 14:51, vijay wrote: > > Hi All, > >? ? We need couple of people to take charge of PyCon India website. > >? ? Tasks include tweaking the website software and manage the content. > >? ? Code is on github. > > https://github.com/pythonindia/pyconindia2013 > > > > Please reply to this thread if you are interested. > [...] > > We would be glad to get involved. From an initial > look at the codebase, this looks like a static site, > plus Hasgeek's funnel. Is that correct? > Yes. It is just a static file for now. We need to add more content to it. Vijay, can you please suggest what changes you want to make. If someone can make those changes and send me a pull request, I can take care of merging them and deploying. I'm working on setting up funnel for talk submission. It should be ready by tomorrow. We can push CFP out once it is ready. Anand _______________________________________________ BangPypers mailing list BangPypers at python.org http://mail.python.org/mailman/listinfo/bangpypers From gora at mimirtech.com Wed May 22 16:16:29 2013 From: gora at mimirtech.com (Gora Mohanty) Date: Wed, 22 May 2013 19:46:29 +0530 Subject: [BangPypers] Volunteer for Managing pycon India Website content In-Reply-To: <1369231140.18764.YahooMailNeo@web192205.mail.sg3.yahoo.com> References: <1369214505.80329.YahooMailNeo@web192201.mail.sg3.yahoo.com> <1369231140.18764.YahooMailNeo@web192205.mail.sg3.yahoo.com> Message-ID: On 22 May 2013 19:29, vijay wrote: > Konark,mukesh,Gora,sayan and Rahul thanks for volunteering to help us. > As Anand C said can you guys send a pull request to https://github.com/pythonindia/pyconindia2013 > > We basically to work in showing this information > > 1) Home section- Like venue , about us. > 2) CFP section- Explain term and condition and display link to submit > 3) Sponsor's section with 4 slot 1) platinum 2) gold 3) silver 4) partners > > 4) Twitter plugin > 5) Keynote speaker section > 6) Registration section > 7) Blog/New section > 8) FAQ section > 9) Schedule - once Talk selection is done > 10) Volunteer section to recognize volunteer for their support( my plan is to include this to motivate volunteer) > > Do let me know if any section is missed. > > > CFP is been worked by Anand C and Ramki, so we can pick other section and work on the same. > > > @Anand C please do provide us instruction on how to set up locally and guide us on how to contribute faster. [...] I presume that one just forks the repo, informs people what one is working on, and sends Anand a pull request once the work is done. I have a fundamental question. Since the above requirements have workflows like registration, and since the content will be expanding significantly, is there any interest in moving to a framework plus CMS? If so, my vote would be for Django + feincms. Also, are there timelines for the various tasks, or even a broad deadline? Finally, I presume that this discussion needs to move offline, or to a different mailing list. Regards, Gora From lifeofnavin at gmail.com Wed May 22 18:03:04 2013 From: lifeofnavin at gmail.com (Navin Pai) Date: Wed, 22 May 2013 21:33:04 +0530 Subject: [BangPypers] Volunteer for Managing pycon India Website content Message-ID: Date: Wed, 22 May 2013 17:21:45 +0800 (SGT) From: vijay To: Bangalore Python Users Group - India , Mailing list for the PyCon India conference Subject: [BangPypers] Volunteer for Managing pycon India Website > content > Message-ID: > <1369214505.80329.YahooMailNeo at web192201.mail.sg3.yahoo.com> > Content-Type: text/plain; charset=iso-8859-1 > > Hi All, > ? ?We need couple of people to take charge of PyCon India website. > ? ?Tasks include tweaking the website software and manage the content. > ? ?Code is on github. > https://github.com/pythonindia/pyconindia2013 > > Please reply to this thread if you are interested. > > With Thanks > Vijay > > Another volunteer here... if needed :) From vnbang2003 at yahoo.com Wed May 22 18:20:04 2013 From: vnbang2003 at yahoo.com (vijay) Date: Thu, 23 May 2013 00:20:04 +0800 (SGT) Subject: [BangPypers] Volunteer for Managing pycon India Website content In-Reply-To: References: <1369214505.80329.YahooMailNeo@web192201.mail.sg3.yahoo.com> <1369231140.18764.YahooMailNeo@web192205.mail.sg3.yahoo.com> Message-ID: <1369239604.81502.YahooMailNeo@web192204.mail.sg3.yahoo.com> Gora, ? ?Workflows like CFP is taken care by funnel. ? ? Registration is taken care by doattend we just need to provide link and explain why we need registration fee and all. Timeline wise? 1) CFP is tentative in 1-2 days. 2) Registration need to start by EOW. 3) Sponsor's we need it as early as possible as we are already late on this and we already got sponsor confirmation from few companies. hope this answers your question. With Thanks Vijay ________________________________ From: Gora Mohanty To: vijay ; Bangalore Python Users Group - India Sent: Wednesday, 22 May 2013 7:46 PM Subject: Re: [BangPypers] Volunteer for Managing pycon India Website content On 22 May 2013 19:29, vijay wrote: > Konark,mukesh,Gora,sayan and Rahul thanks for volunteering to help us. > As Anand C said can you guys send a pull request to https://github.com/pythonindia/pyconindia2013 > > We basically to work in showing this information > > 1)? Home section- Like venue , about us. > 2)? CFP section- Explain term and condition and display link to submit > 3)? Sponsor's section with 4 slot 1) platinum 2) gold 3) silver 4) partners > > 4)? Twitter plugin > 5)? Keynote speaker section > 6)? Registration section > 7)? Blog/New section > 8)? FAQ section > 9)? Schedule - once Talk selection is done > 10) Volunteer section to recognize volunteer for their support( my plan is to include this to motivate volunteer) > > Do let me know if any section is missed. > > > CFP is been worked by Anand C and Ramki, so we can pick other section and work on the same. > > > @Anand C please do provide us instruction on how to set up locally and guide us on how to contribute faster. [...] I presume that one just forks the repo, informs people what one is working on, and sends Anand? a pull request once the work is done. I have a fundamental question. Since the above requirements have workflows like registration, and since the content will be expanding significantly, is there any interest in moving to a framework plus CMS? If so, my vote would be for Django + feincms. Also, are there timelines for the various tasks, or even a broad deadline? Finally, I presume that this discussion needs to move offline, or to a different mailing list. Regards, Gora From satyaakam at gmail.com Wed May 22 19:05:20 2013 From: satyaakam at gmail.com (satyaakam goswami) Date: Wed, 22 May 2013 22:35:20 +0530 Subject: [BangPypers] Volunteer for Managing pycon India Website content In-Reply-To: References: <1369214505.80329.YahooMailNeo@web192201.mail.sg3.yahoo.com> <1369231140.18764.YahooMailNeo@web192205.mail.sg3.yahoo.com> Message-ID: > > Also, are there timelines for the various tasks, or even a broad > deadline? Finally, I presume that this discussion needs to move > offline, or to a different mailing list. > Yes the announcements can happen on various mailing lists and the discussions can happen on the http://mail.python.org/mailman/listinfo/inpycon mailing list only . -Satya fossevents.in From noufal at nibrahim.net.in Wed May 22 19:23:57 2013 From: noufal at nibrahim.net.in (Noufal Ibrahim) Date: Wed, 22 May 2013 22:53:57 +0530 Subject: [BangPypers] Volunteer for Managing pycon India Website content In-Reply-To: (Gora Mohanty's message of "Wed, 22 May 2013 19:46:29 +0530") References: <1369214505.80329.YahooMailNeo@web192201.mail.sg3.yahoo.com> <1369231140.18764.YahooMailNeo@web192205.mail.sg3.yahoo.com> Message-ID: <87li776i8i.fsf@sanitarium.localdomain> Gora Mohanty writes: [...] > I presume that one just forks the repo, informs people what one > is working on, and sends Anand a pull request once the work is > done. > > I have a fundamental question. Since the above requirements have > workflows like registration, and since the content will be expanding > significantly, is there any interest in moving to a framework plus > CMS? If so, my vote would be for Django + feincms. I'm not sure that's a good thing given how short of time we are. New technology always has some settling time often due to non technical issues and that's a time sink right now. > Also, are there timelines for the various tasks, or even a broad > deadline? Finally, I presume that this discussion needs to move > offline, or to a different mailing list. The discussions are better done on the inpycon mailing list. I presume you're already on it. [...] -- Cordially, Noufal http://nibrahim.net.in From anandology at gmail.com Thu May 23 08:09:42 2013 From: anandology at gmail.com (Anand Chitipothu) Date: Thu, 23 May 2013 11:39:42 +0530 Subject: [BangPypers] Volunteer for Managing pycon India Website content In-Reply-To: References: <1369214505.80329.YahooMailNeo@web192201.mail.sg3.yahoo.com> <1369231140.18764.YahooMailNeo@web192205.mail.sg3.yahoo.com> Message-ID: On Wed, May 22, 2013 at 7:46 PM, Gora Mohanty wrote: > On 22 May 2013 19:29, vijay wrote: > > Konark,mukesh,Gora,sayan and Rahul thanks for volunteering to help us. > > As Anand C said can you guys send a pull request to > https://github.com/pythonindia/pyconindia2013 > > > > We basically to work in showing this information > > > > 1) Home section- Like venue , about us. > > 2) CFP section- Explain term and condition and display link to submit > > 3) Sponsor's section with 4 slot 1) platinum 2) gold 3) silver 4) > partners > > > > 4) Twitter plugin > > 5) Keynote speaker section > > 6) Registration section > > 7) Blog/New section > > 8) FAQ section > > 9) Schedule - once Talk selection is done > > 10) Volunteer section to recognize volunteer for their support( my plan > is to include this to motivate volunteer) > > > > Do let me know if any section is missed. > > > > > > CFP is been worked by Anand C and Ramki, so we can pick other section > and work on the same. > > > > > > @Anand C please do provide us instruction on how to set up locally and > guide us on how to contribute faster. > [...] > > I presume that one just forks the repo, informs people what one > is working on, and sends Anand a pull request once the work is > done. > > I have a fundamental question. Since the above requirements > have workflows like registration, and since the content will be > expanding significantly, is there any interest in moving to a > framework plus CMS? If so, my vote would be for Django + > feincms. > I'm going to set up eventframe, the CMS system that we used last year. Until I setup, we'll have to live with the static page. Currently I'm working on setting up funnel for talk submission. > Also, are there timelines for the various tasks, or even a broad > deadline? I think we should push out CFP and open registrations by end of this month. > Finally, I presume that this discussion needs to move > offline, or to a different mailing list. > Yes, inpycon is better place to discuss this. Anand From harish.shastry at gmail.com Thu May 23 09:10:54 2013 From: harish.shastry at gmail.com (Harish Vishwanath) Date: Thu, 23 May 2013 12:40:54 +0530 Subject: [BangPypers] Volunteer for Managing pycon India Website content In-Reply-To: References: <1369214505.80329.YahooMailNeo@web192201.mail.sg3.yahoo.com> <1369231140.18764.YahooMailNeo@web192205.mail.sg3.yahoo.com> Message-ID: How do I subscribe to inpycon? Please help. Regards, Harish On Thu, May 23, 2013 at 11:39 AM, Anand Chitipothu wrote: > On Wed, May 22, 2013 at 7:46 PM, Gora Mohanty wrote: > > > On 22 May 2013 19:29, vijay wrote: > > > Konark,mukesh,Gora,sayan and Rahul thanks for volunteering to help us. > > > As Anand C said can you guys send a pull request to > > https://github.com/pythonindia/pyconindia2013 > > > > > > We basically to work in showing this information > > > > > > 1) Home section- Like venue , about us. > > > 2) CFP section- Explain term and condition and display link to submit > > > 3) Sponsor's section with 4 slot 1) platinum 2) gold 3) silver 4) > > partners > > > > > > 4) Twitter plugin > > > 5) Keynote speaker section > > > 6) Registration section > > > 7) Blog/New section > > > 8) FAQ section > > > 9) Schedule - once Talk selection is done > > > 10) Volunteer section to recognize volunteer for their support( my plan > > is to include this to motivate volunteer) > > > > > > Do let me know if any section is missed. > > > > > > > > > CFP is been worked by Anand C and Ramki, so we can pick other section > > and work on the same. > > > > > > > > > @Anand C please do provide us instruction on how to set up locally and > > guide us on how to contribute faster. > > [...] > > > > I presume that one just forks the repo, informs people what one > > is working on, and sends Anand a pull request once the work is > > done. > > > > I have a fundamental question. Since the above requirements > > have workflows like registration, and since the content will be > > expanding significantly, is there any interest in moving to a > > framework plus CMS? If so, my vote would be for Django + > > feincms. > > > > I'm going to set up eventframe, the CMS system that we used last year. > Until I setup, we'll have to live with the static page. Currently I'm > working on setting up funnel for talk submission. > > > > Also, are there timelines for the various tasks, or even a broad > > deadline? > > > I think we should push out CFP and open registrations by end of this month. > > > > Finally, I presume that this discussion needs to move > > offline, or to a different mailing list. > > > > Yes, inpycon is better place to discuss this. > > Anand > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > From noufal at nibrahim.net.in Thu May 23 09:31:21 2013 From: noufal at nibrahim.net.in (Noufal Ibrahim) Date: Thu, 23 May 2013 13:01:21 +0530 Subject: [BangPypers] Volunteer for Managing pycon India Website content In-Reply-To: (Harish Vishwanath's message of "Thu, 23 May 2013 12:40:54 +0530") References: <1369214505.80329.YahooMailNeo@web192201.mail.sg3.yahoo.com> <1369231140.18764.YahooMailNeo@web192205.mail.sg3.yahoo.com> Message-ID: <87a9nm6tkm.fsf@sanitarium.localdomain> Harish Vishwanath writes: > How do I subscribe to inpycon? Please help. Use http://mail.python.org/mailman/listinfo/inpycon [...] -- Cordially, Noufal http://nibrahim.net.in From kasina.abhishek at gmail.com Thu May 23 12:15:56 2013 From: kasina.abhishek at gmail.com (Abhishek Kasina) Date: Thu, 23 May 2013 15:45:56 +0530 Subject: [BangPypers] BangPypers Digest, Vol 69, Issue 19 In-Reply-To: References: Message-ID: <519DEC5C.3050809@gmail.com> I would love to be of help in case you need an extra pair of hands. Regards, Abhishek. On Wednesday 22 May 2013 03:30 PM, bangpypers-request at python.org wrote: > Message: 3 > Date: Wed, 22 May 2013 17:21:45 +0800 (SGT) > From: vijay > To: Bangalore Python Users Group - India, > Mailing list for the PyCon India conference > Subject: [BangPypers] Volunteer for Managing pycon India Website > content > Message-ID: > <1369214505.80329.YahooMailNeo at web192201.mail.sg3.yahoo.com> > Content-Type: text/plain; charset=iso-8859-1 > > Hi All, > ? ?We need couple of people to take charge of PyCon India website. > ? ?Tasks include tweaking the website software and manage the content. > ? ?Code is on github. > https://github.com/pythonindia/pyconindia2013 > > Please reply to this thread if you are interested. > > With Thanks > Vijay > > From pravs3683 at gmail.com Fri May 24 10:05:13 2013 From: pravs3683 at gmail.com (Praveen Kumar) Date: Fri, 24 May 2013 13:35:13 +0530 Subject: [BangPypers] Need help installing MySQLdb Message-ID: Hi, I have to install MySQLdb module for python2.4 on a CentOS6 - 64bit system. I tried hard but I am not able to install it. Can you please help me, on installing MySQLdb module. Thanks, Praveen From gora at mimirtech.com Fri May 24 10:17:29 2013 From: gora at mimirtech.com (Gora Mohanty) Date: Fri, 24 May 2013 13:47:29 +0530 Subject: [BangPypers] Need help installing MySQLdb In-Reply-To: References: Message-ID: On 24 May 2013 13:35, Praveen Kumar wrote: > Hi, > > I have to install MySQLdb module for python2.4 on a CentOS6 - 64bit system. > I tried hard but I am not able to install it. > > Can you please help me, on installing MySQLdb module. You would be better off asking on a CentOS list. This is not really relevant here. Having said that, yum with the proper repos should work, except that I am not sure how well an old version of Python, 2.4, would be supported on CentOS 6. Regards, Gora From aashutoshnarayan at gmail.com Fri May 24 15:14:14 2013 From: aashutoshnarayan at gmail.com (Ashutosh Narayan) Date: Fri, 24 May 2013 18:44:14 +0530 Subject: [BangPypers] Silent installation of Active Directory server using Python Message-ID: Hi folks, I have to do a silent installation of Active Directory (AD) on Windows. AFAIK Fabric is one such tool to do do. Say, dcpromo is a command to setup AD, it opens up a wizard and we fill details. Now how can I setup AD on Windows using Python scripts Can somebody throw some light on how can I start with ? Thank you, -- Ashutosh Narayan http://ashutoshn.wordpress.com/ From noufal at nibrahim.net.in Fri May 24 19:06:43 2013 From: noufal at nibrahim.net.in (Noufal Ibrahim) Date: Fri, 24 May 2013 22:36:43 +0530 Subject: [BangPypers] [Inpycon] Volunteer for Managing pycon India Website content In-Reply-To: (konark modi's message of "Wed, 22 May 2013 17:27:06 +0530") References: <1369214505.80329.YahooMailNeo@web192201.mail.sg3.yahoo.com> Message-ID: <87obc0qpcs.fsf@sanitarium.localdomain> There's a pull request which Gora has sent that adds sponsors. There's some discussion going on. Anyone interested in helping out, please jump in and participate. More will come as the work gains traction. https://github.com/pythonindia/pyconindia2013/pull/1 Thanks. [...] -- Cordially, Noufal http://nibrahim.net.in From sriramnrn at gmail.com Sat May 25 03:34:23 2013 From: sriramnrn at gmail.com (Sriram Narayanan) Date: Sat, 25 May 2013 07:04:23 +0530 Subject: [BangPypers] Silent installation of Active Directory server using Python In-Reply-To: References: Message-ID: You would be better off configuring AD using power shell scripts. You could always trigger these using python, if you want. I don't know if func has been ported to Windows yet, but I've used chef on Windows, and I know that puppet works too. Ram On May 24, 2013 6:57 PM, "Ashutosh Narayan" wrote: > Hi folks, > > I have to do a silent installation of Active Directory (AD) on Windows. > AFAIK Fabric is one such tool to do do. > Say, dcpromo is a command to setup AD, it opens up a wizard and we fill > details. > Now how can I setup AD on Windows using Python scripts > Can somebody throw some light on how can I start with ? > > Thank you, > -- > Ashutosh Narayan > > http://ashutoshn.wordpress.com/ > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers > From baiju.m.mail at gmail.com Sat May 25 04:30:01 2013 From: baiju.m.mail at gmail.com (Baiju M) Date: Sat, 25 May 2013 08:00:01 +0530 Subject: [BangPypers] Silent installation of Active Directory server using Python In-Reply-To: References: Message-ID: You may consider using Salt (Python based remote execution and configuration management tool): http://docs.saltstack.com/ Windows installers are available here: http://docs.saltstack.com/topics/installation/windows.html On Fri, May 24, 2013 at 6:44 PM, Ashutosh Narayan wrote: > Hi folks, > > I have to do a silent installation of Active Directory (AD) on Windows. > AFAIK Fabric is one such tool to do do. > Say, dcpromo is a command to setup AD, it opens up a wizard and we fill > details. > Now how can I setup AD on Windows using Python scripts > Can somebody throw some light on how can I start with ? > > Thank you, > -- > Ashutosh Narayan > > http://ashutoshn.wordpress.com/ > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers From aashutoshnarayan at gmail.com Mon May 27 08:36:37 2013 From: aashutoshnarayan at gmail.com (Ashutosh Narayan) Date: Mon, 27 May 2013 12:06:37 +0530 Subject: [BangPypers] Silent installation of Active Directory server using Python In-Reply-To: References: Message-ID: @Ram, Thanks for pointing this out. I will better use Chef. There would be some configuration file to which "dcpromo" wizard writes to. I have to find it. I can then create a template of it and execute them using Chef. @Baiju, I have to give some more thought on how to use Salt. Thanks for the links. On Sat, May 25, 2013 at 8:00 AM, Baiju M wrote: > You may consider using Salt (Python based remote execution > and configuration management tool): > http://docs.saltstack.com/ > > Windows installers are available here: > http://docs.saltstack.com/topics/installation/windows.html > > > On Fri, May 24, 2013 at 6:44 PM, Ashutosh Narayan > wrote: > > Hi folks, > > > > I have to do a silent installation of Active Directory (AD) on Windows. > > AFAIK Fabric is one such tool to do do. > > Say, dcpromo is a command to setup AD, it opens up a wizard and we fill > > details. > > Now how can I setup AD on Windows using Python scripts > > Can somebody throw some light on how can I start with ? > > > > Thank you, > > -- > > Ashutosh Narayan > > > > http://ashutoshn.wordpress.com/ > > _______________________________________________ > > BangPypers mailing list > > BangPypers at python.org > > http://mail.python.org/mailman/listinfo/bangpypers > _______________________________________________ > BangPypers mailing list > BangPypers at python.org > http://mail.python.org/mailman/listinfo/bangpypers >