You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to chen...@googlegroups.com
Hi ChennaiPythonists, Today 27/04/2013 at 3:00 PM Python April meet was began. Around some 15 people attended.
== Talks
=== Telite GSM/GPRS modem with Python Engine
Venkat started the meet with an intresting topic. He explained about a python engine runs in an Telite GSM/GPRS Module. He explained the following
1. Python script intrepreter engine 1.5.2 in a 1 MB Non volatile Memory space for scripting. It has 1MB of RAM. 2. He explained the folowing using MDM library. * Sending SMS * Sending MAIL * Calling a Phone no 3. He showed a demo of flashing the code in the module 4. He used some commands to execute the script inside th module.
Vijay took an excellent session on Python Recipes for writing switch case and enum in python.
He first explained switch case with a global variable . But Switch implemented using Global variable will corrupt the global variable if we are using nested switch.So he replaced it with by creating instances. Then he explained *args for checking multiple cases in each switch case.
Then he took how to create enum
1. enum(STATE, ["KING","QUEEN","PAWN"]) 2. He explained about type function to create instances
>>> test=type("STATE",(object,),{'king':0,'QUEEN':1,'PAWN':2}) >>> test <class '__main__.STATE'> >>> test.QUEEN 1 >>>
Then he took about __slot__ in order to to avoid modifying Values in runtime. While explaining enum he also explians some basics of creating objects.
== Rap up
Vijay asked audience who are all willing for next month talk. Balamurugan and Rengaraj raised their hands for giving talk in Next month.
Thanks to Zilogic Systems for offering Cool Drinks in between the session
With that we wind up this month ChennaiPy meet.
Regards Rengaraj
Vijay Kumar
unread,
Apr 30, 2013, 7:17:47 AM4/30/13
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to chen...@googlegroups.com
On Sunday 28 April 2013 12:03 AM, sakthirengaraj wrote:
> Hi ChennaiPythonists,
> Today 27/04/2013 at 3:00 PM Python April meet was began.
> Around some 15 people attended.