From ammaranjith at gmail.com Fri Jul 1 07:27:48 2016 From: ammaranjith at gmail.com (ranjith pillay) Date: Fri, 1 Jul 2016 16:57:48 +0530 Subject: [Chennaipy] Python interpreter Message-ID: Hello friends, I have a question to ask. If you define the following cases: Case 1: ----------- x = 1 def f(): print(x) Case 2: ----------- x = 1 def f(): print(x) x = 5 print(x) If you call the function f, in case 1 there won't be a problem, It will print 1. But in case 2, it will give an error "UnboundLocalError: local variable 'x' referenced before assignment"...One would think that in case 2, it should have printed 1 and 5. Any one could explain what is happening here? Why does the interpreter get confused in the 2nd Case? Thanks. Regards, Ranjith -------------- next part -------------- An HTML attachment was scrubbed... URL: From ve_krish at yahoo.com Fri Jul 1 13:02:20 2016 From: ve_krish at yahoo.com (venkata krishnan) Date: Fri, 1 Jul 2016 17:02:20 +0000 (UTC) Subject: [Chennaipy] Python interpreter References: <1219998238.455774.1467392540402.JavaMail.yahoo.ref@mail.yahoo.com> Message-ID: <1219998238.455774.1467392540402.JavaMail.yahoo@mail.yahoo.com> Dear Ranjit, The interpreter is not confused. It actually points out the ambiguity in that code/intention.An variable cannot be a global and local within that function's scope. In this scenario you have to use theglobal keyword. Please check the topic [Global vs. Local Variables and Namespaces?|?here] | | | Python3 Tutorial: Global vs. Local Variables and Namespaces Global versus local Variables, i.e. when and how to use global and local variables in Python namespaces. | | | ?ThanksVenkat -------------- next part -------------- An HTML attachment was scrubbed... URL: From sharmila.gopirajan at gmail.com Fri Jul 1 13:42:03 2016 From: sharmila.gopirajan at gmail.com (Sharmila Gopirajan) Date: Fri, 1 Jul 2016 23:12:03 +0530 Subject: [Chennaipy] Python interpreter Message-ID: the variable 'x' defined outside the scope of the function f is a global variable. Python allows access of the global variable within the function. But when you assign the value x=5, it starts to treat x as a local variable. When there is a print statment before the assignment, you get unbound local error. x = 1 def f(): x = 5 print (x) f () #prints 5 print (x) #prints 1 In the above case, there is a global variable x and there is also a local variable x. Assigning to the local variable, does not change the global variable x. If you do want to modify the global variable, you need to explicitly tell the interpreter that you would like to work with the global variable. x = 1 def f(): global x x = 5 print (x) f () #prints 5 print (x) #prints 5 Date: Fri, 1 Jul 2016 16:57:48 +0530 > From: ranjith pillay > To: chennaipy at python.org > Subject: [Chennaipy] Python interpreter > Message-ID: > j5V4PK3iaTDYJSuSafHnpVU_j6g at mail.gmail.com> > Content-Type: text/plain; charset="utf-8" > > Hello friends, > > I have a question to ask. > > If you define the following cases: > > Case 1: > ----------- > x = 1 > def f(): > print(x) > > Case 2: > ----------- > x = 1 > def f(): > print(x) > x = 5 > print(x) > > > If you call the function f, in case 1 there won't be a problem, It will > print 1. But in case 2, it will give an error "UnboundLocalError: local > variable 'x' referenced before assignment"...One would think that in case > 2, it should have printed 1 and 5. Any one could explain what is happening > here? Why does the interpreter get confused in the 2nd Case? > > Thanks. > > Regards, > Ranjith > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://mail.python.org/pipermail/chennaipy/attachments/20160701/8073650d/attachment-0001.html > > > > ------------------------------ > > Subject: Digest Footer > > _______________________________________________ > Chennaipy mailing list > Chennaipy at python.org > https://mail.python.org/mailman/listinfo/chennaipy > > > ------------------------------ > > End of Chennaipy Digest, Vol 35, Issue 1 > **************************************** > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ammaranjith at gmail.com Sat Jul 2 13:56:25 2016 From: ammaranjith at gmail.com (ranjith pillay) Date: Sat, 2 Jul 2016 23:26:25 +0530 Subject: [Chennaipy] Chennaipy Digest, Vol 35, Issue 2 In-Reply-To: References: Message-ID: Thanks for all your answers. I do understand the use of global keyword, and such cases can be solved by specifying the global keyword. But its kind of intriguing. In the 1st case the interpreter does not find x in the local name space but finds it in the enclosing namespace. The same argument should hold true for the 2nd case. I am not assigning a new value to x but only printing it. It should have found the x in the enclosing namespace. I would like to understand this from the interpreter's view. Python being a dynamically interpreted language, which in simple terms would mean interpreting each line of code. I was trying to understand how the interpreter behaves when it encounters the def keyword and how it assigns namespaces. Regards Ranjith On 02-Jul-2016 9:32 PM, wrote: Send Chennaipy mailing list submissions to chennaipy at python.org To subscribe or unsubscribe via the World Wide Web, visit https://mail.python.org/mailman/listinfo/chennaipy or, via email, send a message with subject or body 'help' to chennaipy-request at python.org You can reach the person managing the list at chennaipy-owner at python.org When replying, please edit your Subject line so it is more specific than "Re: Contents of Chennaipy digest..." Today's Topics: 1. Python interpreter (venkata krishnan) 2. Re: Python interpreter (Sharmila Gopirajan) ---------------------------------------------------------------------- Message: 1 Date: Fri, 1 Jul 2016 17:02:20 +0000 (UTC) From: venkata krishnan To: "chennaipy at python.org" Subject: [Chennaipy] Python interpreter Message-ID: <1219998238.455774.1467392540402.JavaMail.yahoo at mail.yahoo.com> Content-Type: text/plain; charset="utf-8" Dear Ranjit, The interpreter is not confused. It actually points out the ambiguity in that code/intention.An variable cannot be a global and local within that function's scope. In this scenario you have to use theglobal keyword. Please check the topic [Global vs. Local Variables and Namespaces?|?here] | | | Python3 Tutorial: Global vs. Local Variables and Namespaces Global versus local Variables, i.e. when and how to use global and local variables in Python namespaces. | | | ?ThanksVenkat -------------- next part -------------- An HTML attachment was scrubbed... URL: < http://mail.python.org/pipermail/chennaipy/attachments/20160701/9fa3abfa/attachment-0001.html > ------------------------------ Message: 2 Date: Fri, 1 Jul 2016 23:12:03 +0530 From: Sharmila Gopirajan To: chennaipy at python.org Subject: Re: [Chennaipy] Python interpreter Message-ID: Content-Type: text/plain; charset="utf-8" the variable 'x' defined outside the scope of the function f is a global variable. Python allows access of the global variable within the function. But when you assign the value x=5, it starts to treat x as a local variable. When there is a print statment before the assignment, you get unbound local error. x = 1 def f(): x = 5 print (x) f () #prints 5 print (x) #prints 1 In the above case, there is a global variable x and there is also a local variable x. Assigning to the local variable, does not change the global variable x. If you do want to modify the global variable, you need to explicitly tell the interpreter that you would like to work with the global variable. x = 1 def f(): global x x = 5 print (x) f () #prints 5 print (x) #prints 5 Date: Fri, 1 Jul 2016 16:57:48 +0530 > From: ranjith pillay > To: chennaipy at python.org > Subject: [Chennaipy] Python interpreter > Message-ID: > j5V4PK3iaTDYJSuSafHnpVU_j6g at mail.gmail.com> > Content-Type: text/plain; charset="utf-8" > > Hello friends, > > I have a question to ask. > > If you define the following cases: > > Case 1: > ----------- > x = 1 > def f(): > print(x) > > Case 2: > ----------- > x = 1 > def f(): > print(x) > x = 5 > print(x) > > > If you call the function f, in case 1 there won't be a problem, It will > print 1. But in case 2, it will give an error "UnboundLocalError: local > variable 'x' referenced before assignment"...One would think that in case > 2, it should have printed 1 and 5. Any one could explain what is happening > here? Why does the interpreter get confused in the 2nd Case? > > Thanks. > > Regards, > Ranjith > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://mail.python.org/pipermail/chennaipy/attachments/20160701/8073650d/attachment-0001.html > > > > ------------------------------ > > Subject: Digest Footer > > _______________________________________________ > Chennaipy mailing list > Chennaipy at python.org > https://mail.python.org/mailman/listinfo/chennaipy > > > ------------------------------ > > End of Chennaipy Digest, Vol 35, Issue 1 > **************************************** > -------------- next part -------------- An HTML attachment was scrubbed... URL: < http://mail.python.org/pipermail/chennaipy/attachments/20160701/c0c4700c/attachment-0001.html > ------------------------------ Subject: Digest Footer _______________________________________________ Chennaipy mailing list Chennaipy at python.org https://mail.python.org/mailman/listinfo/chennaipy ------------------------------ End of Chennaipy Digest, Vol 35, Issue 2 **************************************** -------------- next part -------------- An HTML attachment was scrubbed... URL: From vijaykumar at zilogic.com Sat Jul 2 19:23:13 2016 From: vijaykumar at zilogic.com (Vijay Kumar) Date: Sun, 03 Jul 2016 04:53:13 +0530 Subject: [Chennaipy] Python interpreter (was Re: Chennaipy Digest, Vol 35, Issue 2) In-Reply-To: References: Message-ID: <57784CE1.5030303@zilogic.com> On Saturday 02 July 2016 11:26 PM, ranjith pillay wrote: > But its kind of intriguing. In the 1st case the interpreter does not > find x in the local name space but finds it in the enclosing namespace. > The same argument should hold true for the 2nd case. I am not assigning > a new value to x but only printing it. It should have found the x in the > enclosing namespace. I would like to understand this from the > interpreter's view. Python being a dynamically interpreted language, > which in simple terms would mean interpreting each line of code. I was > trying to understand how the interpreter behaves when it encounters the > def keyword and how it assigns namespaces. Each function is parsed and converted to byte code before being interpreted. So it is not like Python is executing code line by line. Regards, Vijay From abdur.engineer at gmail.com Sun Jul 3 13:24:12 2016 From: abdur.engineer at gmail.com (Abdur Rub) Date: Sun, 3 Jul 2016 22:54:12 +0530 Subject: [Chennaipy] Help with Python Message-ID: Dear all, I posted the following on Stack overflow. http://stackoverflow.com/q/38171869/6426077 wonder if anyone here could help thanks Abdur -------------- next part -------------- An HTML attachment was scrubbed... URL: From ve_krish at yahoo.com Sun Jul 3 13:52:43 2016 From: ve_krish at yahoo.com (venkata krishnan) Date: Sun, 3 Jul 2016 17:52:43 +0000 (UTC) Subject: [Chennaipy] Python interpreter References: <385017020.1210430.1467568363516.JavaMail.yahoo.ref@mail.yahoo.com> Message-ID: <385017020.1210430.1467568363516.JavaMail.yahoo@mail.yahoo.com> Dear Ranjit, It is not the interpreter alone in action and it flutters. From my learning by going through the articles below. It works in conjunction with Symbol table to determine the scope of each name binding. So, before it reaches the print(x) in case 2. It has the symbol table prepared for the function/block. When the LEGB scoping rule applied. It finds that, you have already an assignment operator for x in that scope. Thus, it treats it as an UnboundLocalError. Where as in case 1. The symbol table would not have any local scope/assignment for x. Please go through below links(articles) from below. Has a very good explanation of "UnboundLocalError". 1. http://eli.thegreenplace.net/2011/05/15/understanding-unboundlocalerror-in-python/ 2. Symbol table construction in Python's compiler Part1: http://eli.thegreenplace.net/2010/09/18/python-internals-symbol-tables-part-1/ Part2: http://eli.thegreenplace.net/2010/09/20/python-internals-symbol-tables-part-2/ Thanks Venkat From ammaranjith at gmail.com Thu Jul 7 06:03:13 2016 From: ammaranjith at gmail.com (ranjith pillay) Date: Thu, 7 Jul 2016 15:33:13 +0530 Subject: [Chennaipy] Chennaipy Digest, Vol 35, Issue 4 In-Reply-To: References: Message-ID: Thank you Venkat. Regards, Ranjith On Mon, Jul 4, 2016 at 9:30 PM, wrote: > Send Chennaipy mailing list submissions to > chennaipy at python.org > > To subscribe or unsubscribe via the World Wide Web, visit > https://mail.python.org/mailman/listinfo/chennaipy > or, via email, send a message with subject or body 'help' to > chennaipy-request at python.org > > You can reach the person managing the list at > chennaipy-owner at python.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Chennaipy digest..." > > > Today's Topics: > > 1. Help with Python (Abdur Rub) > 2. Re: Python interpreter (venkata krishnan) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Sun, 3 Jul 2016 22:54:12 +0530 > From: Abdur Rub > To: chennaipy at python.org > Subject: [Chennaipy] Help with Python > Message-ID: > < > CAMdP94w2SibW1aWspJYWfNrmjVyqasxFjG3aj4J9cNVuqpXn-Q at mail.gmail.com> > Content-Type: text/plain; charset="utf-8" > > Dear all, > > I posted the following on Stack overflow. > http://stackoverflow.com/q/38171869/6426077 > wonder if anyone here could help > > thanks > Abdur > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://mail.python.org/pipermail/chennaipy/attachments/20160703/4dbccb5f/attachment-0001.html > > > > ------------------------------ > > Message: 2 > Date: Sun, 3 Jul 2016 17:52:43 +0000 (UTC) > From: venkata krishnan > To: "chennaipy at python.org" > Subject: Re: [Chennaipy] Python interpreter > Message-ID: > <385017020.1210430.1467568363516.JavaMail.yahoo at mail.yahoo.com> > Content-Type: text/plain; charset=UTF-8 > > Dear Ranjit, > > It is not the interpreter alone in action and it flutters. From my > learning by going through the articles below. > It works in conjunction with Symbol table to determine the scope of each > name binding. So, before it reaches the print(x) in case 2. It has the > symbol table prepared for the function/block. When the LEGB scoping rule > applied. It finds that, you have already an assignment operator for x in > that scope. Thus, it treats it as an UnboundLocalError. Where as in case 1. > The symbol table would not have any local scope/assignment for x. > > > Please go through below links(articles) from below. Has a very good > explanation of "UnboundLocalError". > 1. > http://eli.thegreenplace.net/2011/05/15/understanding-unboundlocalerror-in-python/ > 2. Symbol table construction in Python's compiler > Part1: > http://eli.thegreenplace.net/2010/09/18/python-internals-symbol-tables-part-1/ > > Part2: > http://eli.thegreenplace.net/2010/09/20/python-internals-symbol-tables-part-2/ > > > Thanks > Venkat > > > ------------------------------ > > Subject: Digest Footer > > _______________________________________________ > Chennaipy mailing list > Chennaipy at python.org > https://mail.python.org/mailman/listinfo/chennaipy > > > ------------------------------ > > End of Chennaipy Digest, Vol 35, Issue 4 > **************************************** > -------------- next part -------------- An HTML attachment was scrubbed... URL: From vijaykumar at bravegnu.org Tue Jul 12 10:41:19 2016 From: vijaykumar at bravegnu.org (Vijay Kumar) Date: Tue, 12 Jul 2016 20:11:19 +0530 Subject: [Chennaipy] Talks for the Next Meet Message-ID: <5785018F.2070106@bravegnu.org> Hi Everyone, The next meetup is on the 23rd of this month. If you are interested in doing a talk (20 min), please send in a talk title and talk description. Regards, Vijay From anuvrat at anuvrat.in Thu Jul 14 07:45:25 2016 From: anuvrat at anuvrat.in (Anuvrat Parashar) Date: Thu, 14 Jul 2016 17:15:25 +0530 Subject: [Chennaipy] [x-post] Pycon India 2016 Posters Message-ID: Namaste The days of the conference are inching closer and in every local meetup we bump into atleast one person who has been programming in Python but hasn't ever heard of Pycon India. Lets use our mailing lists / user group meetups / notice boards / social media to ensure that the word about the conference reaches everyone interested in attending. Below are links to the a few posters that can be printed / shared online. http://i.imgur.com/Y0rhzEQ.jpg http://i.imgur.com/rqmT0cv.jpg http://i.imgur.com/vEVELpu.jpg http://i.imgur.com/nVyFSEs.jpg Lets make PyconIndia 2016 a success. Cheers -- Anuvrat Team Pycon India 2016 PS: send it to the lists I have missed. -------------- next part -------------- An HTML attachment was scrubbed... URL: From murugadossb at gmail.com Sat Jul 16 20:40:55 2016 From: murugadossb at gmail.com (Murugadoss Balasubramanian) Date: Sat, 16 Jul 2016 20:40:55 -0400 Subject: [Chennaipy] Please accept my invitation to Internet of Things (IoT) workshop - July 2016 Message-ID: <849081998.1468716055273.JavaMail.nobody@app16.phi.meetup.com> You're invited! -------------------------------------- Join Murugadoss Balasubramanian at Internet of Things (IoT) workshop - July 2016 When: Sunday, July 17, 2016, 10:00 AM Where: ThoughtWorks Technologies (India) Pvt Ltd. Ascendas International Tech Park, Zenith - 9th Floor, Tharamani Road, Tharamani, Chennai - 600 113 This Meetup is hosted by IoT Geeks. Please register yourself to attend this workshop! https://goo.gl/FJDiyu Do I need to pay this event? We are charging very minimum amount for this workshop. This amount will be used for meetup logistic... https://secure.meetup.com/n/?s=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJkZXN0IjoiaHR0cHM6Ly9zZWN1cmUubWVldHVwLmNvbS9yZWdpc3Rlci8_Z2o9dGUxJmM9MTI3NzQxMzImcnY9dGUxJl94dGQ9Z3F0bGJXRnBiRjlqYkdsamE5b0FKREkzWXpNeE1HRXpMVGd6TWpZdE5ESmlOaTFoTkRNd0xXWmhNV0UzTkRZMFlXWTJNS3BwYm5acGRHVmxYMmxrcURFd056RTRNRGMwJnJnPXRlMSZjdHg9aW52JnRhcmdldFVyaT1odHRwJTNBJTJGJTJGd3d3Lm1lZXR1cC5jb20lMkZpb3RnZWVrcyUyRmV2ZW50cyUyRjIzMjI5NDkxMiUyRiUzRmdqJTNEdGUxJTI2cnYlM0R0ZTEiLCJob29rIjoiaW52IiwiZW1haWxfaW52aXRlZV9pZCI6MTA3MTgwNzQsImlhdCI6MTQ2ODcxNjA1NSwianRpIjoiYjE1ZjdjMTUtMWRlMy00YWVkLTg1NzItOTIwZGI0OTAwNzM4IiwiZXhwIjoxNDY5OTI1NjU1fQ%3D%3D.pxj915UEIiGPbaA5n-kO7FMKvJScBT5FqcMQ-G4fCYk%3D -------------------------------------- ------- This message was sent by Meetup on behalf of Murugadoss Balasubramanian (http://www.meetup.com/iotgeeks/members/126747032/) from IoT Geeks. Questions? You can email Meetup Support at support at meetup.com Unsubscribe (https://secure.meetup.com/n/?s=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJob29rIjoiaW52X29wdG91dCIsImRlc3QiOiJodHRwOi8vd3d3Lm1lZXR1cC5jb20vYWNjb3VudC9vcHRvdXQvP3N1Ym1pdD10cnVlJmVvPXRlMSZlbWFpbD1pbnZpdGUmX21zX3Vuc3ViPXRydWUiLCJlbWFpbCI6ImNoZW5uYWlweUBweXRob24ub3JnIiwiaW52aXRlcl9pZCI6MTI2NzQ3MDMyLCJpYXQiOjE0Njg3MTYwNTUsImp0aSI6IjZiZGQxYzdkLThiYWMtNDQxZC1iNmVhLTI3YjE5YzM4NDQ1MyIsImV4cCI6MTQ2OTkyNTY1NX0%3D.n99O7JTKvFReSBOHGnv7mGbeWCnenpsK0gpQcj-XkQk%3D) from this type of email. Meetup Inc. (http://www.meetup.com/), POB 4668 #37895 New York NY USA 10163 -------------- next part -------------- An HTML attachment was scrubbed... URL: From vijaykumar at zilogic.com Mon Jul 18 03:58:59 2016 From: vijaykumar at zilogic.com (Vijay Kumar B.) Date: Mon, 18 Jul 2016 13:28:59 +0530 Subject: [Chennaipy] [OT] Linux System Programming Dojo Message-ID: <578C8C43.4040707@zilogic.com> Hi Everyone, As part of the Embedded Linux meetup group activities, we are running a coding dojo. This time around we are planning to hack on a Unix shell, the beginnings of which is available from https://gist.github.com/bravegnu/a1ec251567dc6b617e9037c6831ee6ea If you interested, please sign-up for the event at https://in.explara.com/e/linux-system-programming-dojo-2, the event page on meetup is http://www.meetup.com/embedded-linux/events/232412892/ Regards, Vijay From vijaykumar at bravegnu.org Tue Jul 19 23:59:07 2016 From: vijaykumar at bravegnu.org (Vijay Kumar) Date: Wed, 20 Jul 2016 09:29:07 +0530 Subject: [Chennaipy] July Meetup (RSVP Required) Message-ID: # July Meetup ## Date & Time * 23rd July (Saturday) * 3:00pm to 5:30pm ## Venue IMSc, Ramanujan Auditorium C.I.T Campus, 4th Cross Street, Tharamani, Chennai ## Schedule * Python Gotchas (20 min) by Naren * Think your Python code is slow? (20 min) by Ambarish KC * Networking Tea Break by Logic Soft (30 min) * Setting up Emacs for Python Development (20 min) by Kiran * Lightning Talks (20 min) * Discussions (20 min) Only the talk titles are included here, for the sake of brevity. For details about the talks and the speakers, please visit http://www.meetup.com/Chennaipy/events/232562130/ ## RSVP Please RSVP on our Meetup page http://www.meetup.com/Chennaipy/events/232562130/ ## New to Python? If you are new to Python, you can make best use of the meetup, if you go through any of the following resources, before attending the meetup. * Invent Your Own Computer Games with Python, Chapters 1 - 9 http://inventwithpython.com/chapters/ * Google's Python Course (with Lecture Videos) https://developers.google.com/edu/python/ * How to Think Like a Computer Scientist, Chapters 1 - 12 http://www.greenteapress.com/thinkpython/ From brajusai at gmail.com Wed Jul 20 23:21:50 2016 From: brajusai at gmail.com (Raju Bakthavatsalu) Date: Thu, 21 Jul 2016 08:51:50 +0530 Subject: [Chennaipy] July Meetup (RSVP Required) In-Reply-To: References: Message-ID: Is it open for all or is there any specific invitation or fee required? Regards, Raju On Wednesday, July 20, 2016, Vijay Kumar wrote: > # July Meetup > > ## Date & Time > > * 23rd July (Saturday) > * 3:00pm to 5:30pm > > ## Venue > > IMSc, Ramanujan Auditorium > C.I.T Campus, 4th Cross Street, Tharamani, Chennai > > ## Schedule > > * Python Gotchas (20 min) > by Naren > > * Think your Python code is slow? (20 min) > by Ambarish KC > > * Networking Tea Break by Logic Soft (30 min) > > * Setting up Emacs for Python Development (20 min) > by Kiran > > * Lightning Talks (20 min) > > * Discussions (20 min) > > Only the talk titles are included here, for the sake of brevity. For > details about the talks and the speakers, please visit > http://www.meetup.com/Chennaipy/events/232562130/ > > ## RSVP > > Please RSVP on our Meetup page > http://www.meetup.com/Chennaipy/events/232562130/ > > ## New to Python? > > If you are new to Python, you can make best use of the meetup, if you > go through any of the following resources, before attending the > meetup. > > * Invent Your Own Computer Games with Python, Chapters 1 - 9 > http://inventwithpython.com/chapters/ > > * Google's Python Course (with Lecture Videos) > https://developers.google.com/edu/python/ > > * How to Think Like a Computer Scientist, Chapters 1 - 12 > http://www.greenteapress.com/thinkpython/ > > _______________________________________________ > Chennaipy mailing list > Chennaipy at python.org > https://mail.python.org/mailman/listinfo/chennaipy > -------------- next part -------------- An HTML attachment was scrubbed... URL: From vijaykumar at zilogic.com Thu Jul 21 00:12:34 2016 From: vijaykumar at zilogic.com (Vijay Kumar B.) Date: Thu, 21 Jul 2016 09:42:34 +0530 Subject: [Chennaipy] July Meetup (RSVP Required) In-Reply-To: References: Message-ID: <57904BB2.9090100@zilogic.com> On Thursday 21 July 2016 08:51 AM, Raju Bakthavatsalu wrote: > Is it open for all or is there any specific invitation or fee required? > Hi Raju Bakthavatsalu, It is open to everyone. There is no fee. Regards, Vijay From abdulmuneer at gmail.com Fri Jul 22 09:07:47 2016 From: abdulmuneer at gmail.com (Abdul Muneer) Date: Fri, 22 Jul 2016 18:37:47 +0530 Subject: [Chennaipy] [JOB] Visualization Engineer at Minds-AI Message-ID: Hi, Minds.AI (http://minds.ai) is an early stage startup with promising work in the field of Machine Learning. We have super fast Neural Network training platform and are building other associated products that will help customers leverage AI. Minds-ai is spread across India, Netherlands and US with equal emphasize on all three locations. We are looking for a senior developer who is good in Python and Javascript with more than 5 years of experience. Beyond the obvious benefits of salary/stock, you also get to work with some of the best people in the industry. We are a mix of engineers, scientists and mathematicians. Our team includes Co-creator of Bluetooth, A PhD from Geoffrey Hinton's lab, A PhD in computational astrophysics, A PhD in particle physics, Engineers with reputed work and from reputed institues like Caltech and IITs and even a couple of high school students! You see, we are far from the usual tech monoculture :) . We encourage diversity, respects everyone and encourages all kinds of talent. If the domain of Artificial Intelligence excites you and you meet the below requirements, please reply *only to me* with your cv. If you are not interested but know someone suitable, please refer! We are located in HSR Layout, Bangalore. The required skillset: ?*Python:*? > Basic Datastructures > Object Oriented Programming. > Any web development framework Flask/Pyramid/Django. (We use Flask) > Familiarity with SQL Alchemy. > Familiarity with advanced features of python like decorators, collections module etc is a huge plus. ?*Javascript:*? > HTML5 - css, basic javascript. > JQuery > Any other webframework like Angular/React. (We use React) > Experience in visualization tools like D3.js is a huge plus. > Experence in image processing using javascript is a huge plus. ?*Database:*? > Familiarity with any relational database like MySQL, Postgres, Oracle (We use postgres). ?*Version Control:*? > Git or Mercurial (We use Git). ?*Development Platform:*? > Linux. Additionally,: > Ability to work independently and with fluid requirements > A genuine interest in the field of NN and a willingness to learn more about that > Ability to pick up new skills and technologies quickly Please note that Javascript skills are also very essential as we will be building lot of browser based tools for Neural Network Development. Regards, Abdul Muneer -- Twitter: @abdulmuneer -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcetitevents at gmail.com Thu Jul 21 07:25:24 2016 From: mcetitevents at gmail.com (Dr.S. Ramakrishnan) Date: Thu, 21 Jul 2016 16:55:24 +0530 Subject: [Chennaipy] Python Programming Workshop on 30/07/2016 @ MCET-IT - Reg Message-ID: *Greetings from MCET, Pollachi!!!* *We are glad to inform you that the Department of IT at Dr.Mahalingam College of Engineering and Technology is organizing a Workshop on ?Python Programming? for students, research scholars and faculties in the relevant field on 30/07/2016. This workshop will be helpful for the students to learn python programming from industrial perspective * *D**etails are given below:* Workshop Name : Python Programming Date : 30.07.2016 Last date for registration : 27.07.2016 *Registration Fee:* For Students : Rs.400 /- For Faculties & Research Scholars : Rs.500 /- *Organizing Secretary* :Mr.N.Krishnaraj,AP/IT Mobile no: 9865161332 E mail-id:krishnaraj at drmcet.ac.in Herewith the brochure for the workshop is enclosed for your perusal. We request you to give valuable contribution by sending participants and take part actively in the workshop. With Regards, Dr.S.Ramakrishnan M.E,PhD., Professor and Head, Department of Information Technology, Dr.Mahalingam College of Engineering & Technology, Pollachi-642003, India Mobile: 9865161332 Email: ram_f77 at yahoo.com, ramki at drmcet.ac.in My Homepage: http://sites.google.com/site/ramf77 Scholar Index : http://scholar.google.co.in/citations?user=uVKljbQAAAAJ http://academic.research.microsoft.com/Author/10884724/srinivasan-ramakrishnan http://www.researcherid.com/rid/A-1134-2012 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Python Brochure.pdf Type: application/pdf Size: 78071 bytes Desc: not available URL: From chintukoshy at gmail.com Sun Jul 24 03:17:32 2016 From: chintukoshy at gmail.com (Chintu Philips Koshy) Date: Sun, 24 Jul 2016 12:47:32 +0530 Subject: [Chennaipy] Python Programming Workshop on 30/07/2016 @ MCET-IT - Reg In-Reply-To: References: Message-ID: Since this event is paid, would be better if you will add [Commercial] tag. Regards, Chintu Philips Koshy On Thu, Jul 21, 2016 at 4:55 PM, Dr.S. Ramakrishnan wrote: > Greetings from MCET, Pollachi!!! > > > > We are glad to inform you that the Department of IT at Dr.Mahalingam College > of Engineering and Technology is organizing a Workshop on ?Python > Programming? for students, research scholars and faculties in the relevant > field on 30/07/2016. This workshop will be helpful for the students to learn > python programming from industrial perspective > > > > Details are given below: > > > > Workshop Name : Python > Programming > > Date : > 30.07.2016 > > Last date for registration : 27.07.2016 > > > > Registration Fee: > > > > For Students : Rs.400 /- > > For Faculties & Research Scholars : Rs.500 /- > > > Organizing Secretary :Mr.N.Krishnaraj,AP/IT > > Mobile no: 9865161332 > > > Email-id:krishnaraj at drmcet.ac.in > > > > Herewith the brochure for the workshop is enclosed for your perusal. We > request you to give valuable contribution by sending participants and take > part actively in the workshop. > > > > > > > > With Regards, > > > > Dr.S.Ramakrishnan M.E,PhD., > > Professor and Head, > > Department of Information Technology, > > Dr.Mahalingam College of Engineering & Technology, > > Pollachi-642003, India > > Mobile: 9865161332 > > > > Email: ram_f77 at yahoo.com, ramki at drmcet.ac.in > > > > My Homepage: http://sites.google.com/site/ramf77 > > Scholar Index : http://scholar.google.co.in/citations?user=uVKljbQAAAAJ > > > http://academic.research.microsoft.com/Author/10884724/srinivasan-ramakrishnan > > http://www.researcherid.com/rid/A-1134-2012 > > > > _______________________________________________ > Chennaipy mailing list > Chennaipy at python.org > https://mail.python.org/mailman/listinfo/chennaipy > From vnbang2003 at gmail.com Mon Jul 25 14:24:24 2016 From: vnbang2003 at gmail.com (vijay kumar) Date: Mon, 25 Jul 2016 23:54:24 +0530 Subject: [Chennaipy] Announcing PythonMonth for Year 2016 Message-ID: Hi All, PyCon India and PSSI would like to celebrate *August 10th - September 10th 2016* as PythonMonth to conduct Python and related workshops in various parts of India. PythonMonth is an event organized before PyCon India to help create awareness on Python and encourage people to attend PyCon India. We are looking for volunteers to help us from connecting to colleges till conducting workshops. If you are interested to be a part of PythonMonth, please do register yourselves at https://pythonexpress.in/ This is a great opportunity to give back to the community. More details on link [0] Upcoming workshop [1] Looking forward for more helping hands. Let us work towards this great initiative [0] : https://in.pycon.org/blog/2016/python-month-2016.html [1]: https://pythonexpress.in/workshops_upcoming/ -- Thanks, Vijay -------------- next part -------------- An HTML attachment was scrubbed... URL: