From tshrinivasan at gmail.com Mon Apr 28 14:23:01 2014 From: tshrinivasan at gmail.com (Shrinivasan T) Date: Mon, 28 Apr 2014 17:53:01 +0530 Subject: [Chennaipy] Fwd: New Meetup Group: Pych(Pythonists Chennai) Meetup In-Reply-To: <1372165902.1398687152701.JavaMail.root@jobs0.meetup.com> References: <1372165902.1398687152701.JavaMail.root@jobs0.meetup.com> Message-ID: Got this email today. ---------- Forwarded message ---------- From: "Meetup" Date: Apr 28, 2014 5:42 PM Subject: New Meetup Group: Pych(Pythonists Chennai) Meetup To: Cc: [image: Meetup] New Meetup Group! Pych(Pythonists Chennai) Meetup Listed in: Open Source, Python, Programming, Web Development, Meeting New People, and 1 more topic. Organized by: Pythonists Chennai Check it out! ? Pych(pronounced as Pitch) is Pythonists Chennai. A Python user group for people from Chennai, with Pythonic Kolaveri! Check out all 79 Meetup Groups near Chennai ? You might like these Meetups based on your interest in: Linux, Red Hat , Red Hat Society, Open Source , Apache and 8 more topics . Add more interests Unsubscribefrom this email Add *info at meetup.com * to your address book to receive all Meetup emails Meetup, POB 4668 #37895 NY NY USA 10163 <#145a8403dc0cd0e5_> *Meetup HQ in NYC is hiring!* meetup.com/jobs -------------- next part -------------- An HTML attachment was scrubbed... URL: From sakthirengaraj at gmail.com Tue Apr 29 08:57:58 2014 From: sakthirengaraj at gmail.com (Rengaraj D) Date: Tue, 29 Apr 2014 12:27:58 +0530 Subject: [Chennaipy] April Monthly Meet Minutes. Message-ID: = April Monthly Meet Minutes == Talk 1 on Mining Twitter with python by Dorai Thodla Dorai Thodla gave a nice presentation on Mining Twitter. He explained about the use of Twitter nowadays. He explained the twitter as real time news provider with various examples. Then he showed Twitter app written in python, through which he explained how he bookmarks links posted on Twitter. Dorai showed a code for reading twitter feeds and saving that in a database. Using sql database command he converted those tables in to text document. == Talk 2 on Hacking python: Adding New python statement by Vijay. Vijay gave a session on `turtle` a game programing language for teaching programing in school level.He also told that he learned programing using logo. He believes that teaching programing using turtle will actually create interest among students in programing irrespective of the programing language. In logo for iterative statement they use `repeat`. But in python we don't have repeat for iteration. we have `for` or `while` for looping. Vijay wants to solve this problem by hacking python. He showed three ways to use repeat in python script so that interpreter wont through error. === 1st way He used a shell script to change the repeat function in to for loop and give a new file output.py in which input.py output.py ------ ---------- repeat 4: ---------> for i in range(4): fd(2) convert.sh fd(2) ------ ----------- === 2nd way The draw back of above code is the repeat statement have any space, conversion wont work. So he come up with new idea where he used python script as a conversion script. He used token module to replace the `repeat` with `for` tokens in order to solve if repeat statement varies with space. === 3rd way Now vijay dont want a conversion script to do the job, he want a python script in which repeat statement is used should be combined directly by python. He used encoding technique to solve the problem. He wrote own encoding `pyturtle.py` to convert tokens in to statements. To initialise that, he copied the file to python site packages folder. == Conclusion This month python meet end up with a good note and with two good talk. We will see next meet with few more talks. Regards Rengaraj -------------- next part -------------- An HTML attachment was scrubbed... URL: From vijaykumar at bravegnu.org Wed Apr 30 18:50:18 2014 From: vijaykumar at bravegnu.org (Vijay Kumar) Date: Wed, 30 Apr 2014 22:20:18 +0530 Subject: [Chennaipy] Code and Slides Message-ID: <536129CA.8000509@bravegnu.org> Hi Everyone, The code for the talk "Hacking Python: Adding a New Python Statement" is available from https://github.com/bravegnu/python-new-stmt The code for the talk "Mining Twitter with Python" is available from https://github.com/doraithodla/Pyteach/tree/master/Twitter And the slides for the talk is available from http://www.slideshare.net/dorait/collaboration-and-knowledge-sharing-with-twitter When writing this mail, I noticed that I had sent the announcement mail for the April Chennaipy Meet to the googlegroups, instead of this mailing list. People only on this list might not have received the announcement. My apologies for that. Regards, Vijay