From richnusgeeks at gmail.com Mon Dec 5 04:27:48 2011 From: richnusgeeks at gmail.com (Ankur Sharma) Date: Mon, 5 Dec 2011 11:27:48 +0800 Subject: [Ncr-Python.in] hands on tutorial for programming Console mode GUIs using newt/ncurses Message-ID: Hi All, Here are the links to read online / download the print article published in Linux for You magazine to Program Console mode GUIs using newt/ncurses: http://bit.ly/viThIl http://bit.ly/rqB6ET -- Regards, Ankur -------------------------------------------------------- RichNusGeeks Creatives where technologies meet creativity www.richnusgeeks.com www.richnusgeeks.wordpress.com -------------------------------------------------------- IMPORTANT NOTICE: This message is intended only for the use of the individual or entity to which it is addressed, and may contain information that is privileged, confidential and exempt from disclosure under applicable law. If the reader of this message is not the intended recipient, you are hereby notified that any dissemination, distribution or copying of this communication is strictly prohibited. If you have received this communication in error, please notify the sender immediately by email and delete the message. Thank you. -------------- next part -------------- An HTML attachment was scrubbed... URL: From sajuptpm at gmail.com Thu Dec 8 15:13:56 2011 From: sajuptpm at gmail.com (Saju M) Date: Thu, 8 Dec 2011 09:13:56 -0500 Subject: [Ncr-Python.in] Documentation using Sphinx Message-ID: Hi, I am trying source code documentation using Sphinx. Here i have to copy paste all modules in to *.rst file, that is painful. Have any way to create documentation (doc for all modules, classes and methods in the project directory) from project folder quickly. I also planing to add a code browsing facility in the document, for example: code should display if we click on a method/class name in the doc, does sphinx has this feature??? or what tool i have to choose for that ???. From arulalant at gmail.com Thu Dec 8 17:11:11 2011 From: arulalant at gmail.com (Arulalan T) Date: Thu, 8 Dec 2011 21:41:11 +0530 Subject: [Ncr-Python.in] Documentation using Sphinx In-Reply-To: References: Message-ID: 2011/12/8 Saju M > Hi, > I am trying source code documentation using Sphinx. Here i have to > copy paste all modules in to *.rst file, that is painful. Have any way > to create documentation (doc for all modules, classes and methods in > the project directory) from project folder quickly. I also planing to > add a code browsing facility in the document, for example: code should > display if we click on a method/class name in the doc, does sphinx has > this feature??? or what tool i have to choose for that ???. > sphinx has the feature to view the class, method's source code and/or doc string using the side panel link of every page. It should be like 'view source' and 'view doc'. I am using sphinx, I feel it is best tool to generate the documentation. http://matplotlib.sourceforge.net matplotlib web site is designed by sphinx only. http://matplotlib.sourceforge.net/devel/documenting_mpl.html?highlight=sphinx#matplotlib.sphinxext.plot_directive Here is the good documentation about how to start/use the sphinx tool. Matplotlib contributed to sphinx by 1. generate the py module class inheritance diagram as image 2. ipython colorize in sphinx 3. etc We can customize the css, if need. -- Regards, Arulalan.T Project Associate Centre for Atmospheric Sciences Indian Institute of Technology Delhi My Experiments In Gnu/Linux ! : http://tuxcoder.wordpress.com Kanchi Linux User Group Rocks ! : http://kanchilug.wordpress.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From sajuptpm at gmail.com Thu Dec 8 18:37:23 2011 From: sajuptpm at gmail.com (Saju M) Date: Thu, 8 Dec 2011 23:07:23 +0530 Subject: [Ncr-Python.in] Documentation using Sphinx In-Reply-To: References: Message-ID: Thanks Arulalan, sphinx has the feature to view the class, method's source code and/or doc string using the side panel link of every page. It should be like 'view source' and 'view doc'. Could you please share links of documentation which have python source code browsing feature .???? On Thu, Dec 8, 2011 at 9:41 PM, Arulalan T wrote: > > > 2011/12/8 Saju M >> >> Hi, >> I am trying source code documentation using Sphinx. Here i have to >> copy paste all modules in to *.rst file, that is painful. Have any way >> to create documentation (doc for all modules, classes and methods in >> the project directory) from project folder quickly. I also planing to >> add a code browsing facility in the document, for example: code should >> display if we click on a method/class name in the doc, does sphinx has >> this feature??? ?or what tool i have to choose for that ???. > > > > sphinx has the feature to view the class, method's source code and/or doc > string > using the side panel link of every page. It should be like 'view source' and > 'view doc'. > > I am using sphinx, I feel it is best tool to generate the documentation. > > http://matplotlib.sourceforge.net matplotlib web site is designed by? sphinx > only. > > http://matplotlib.sourceforge.net/devel/documenting_mpl.html?highlight=sphinx#matplotlib.sphinxext.plot_directive > > Here is the good documentation about how to start/use the sphinx tool. > > Matplotlib contributed to sphinx by > > 1. generate the py module class inheritance diagram as image > 2. ipython colorize in sphinx > 3. etc > > We can customize the css, if need. > > -- > Regards, > Arulalan.T > Project Associate > Centre for Atmospheric Sciences > Indian Institute of Technology Delhi > > My Experiments In Gnu/Linux !? : http://tuxcoder.wordpress.com > Kanchi Linux User Group Rocks ! : http://kanchilug.wordpress.com > > > _______________________________________________ > http://mail.python.org/mailman/listinfo/ncr-python.in > Mailing list guidelines : http://lug-iitd.org/Mailing_List_Guidelines From gauravluthra06 at gmail.com Fri Dec 9 08:51:50 2011 From: gauravluthra06 at gmail.com (gaurav luthra) Date: Fri, 9 Dec 2011 13:21:50 +0530 Subject: [Ncr-Python.in] Trouble Making Windows Executables from Python Code Message-ID: Hi, I am using CentOS for writing python code. I want to make windows executables from it but cannot find a package to convert python code to exe. I looked at py2exe but I could not get it to install on my system.Apparently it doesn't work for Linux. Please suggest some alternative to this. Thank You -- ~GAURAV LUTHRA~ -------------- next part -------------- An HTML attachment was scrubbed... URL: From noufal at gmail.com Fri Dec 9 13:24:46 2011 From: noufal at gmail.com (Noufal Ibrahim) Date: Fri, 09 Dec 2011 17:54:46 +0530 Subject: [Ncr-Python.in] Trouble Making Windows Executables from Python Code In-Reply-To: (gaurav luthra's message of "Fri, 9 Dec 2011 13:21:50 +0530") References: Message-ID: <87liqm9bld.fsf@sanitarium.localdomain> gaurav luthra writes: > Hi, > > I am using CentOS for writing python code. I want to make windows > executables from it but cannot find a package to convert python code to exe. > I looked at py2exe but I could not get it to install on my > system.Apparently it doesn't work for Linux. Please suggest some > alternative to this. I've never use it but cxfreeze[1] is supposed to be the "right way" to do this in a cross platform manner. [...] Footnotes: [1] http://freecode.com/projects/cx_freeze -- ~noufal http://nibrahim.net.in Live within your income, even if you have to borrow to do so. -- Josh Billings From sajuptpm at gmail.com Mon Dec 12 12:09:52 2011 From: sajuptpm at gmail.com (Saju M) Date: Mon, 12 Dec 2011 06:09:52 -0500 Subject: [Ncr-Python.in] Sphinx inheritance-diagram Issue Message-ID: I created complete API documentation using sphinx. Command i used are: $ sphinx-apidoc -f -F -o . /home/sam/CMS $ make html Then i planned to add inheritance-diagram of classes, for that i edited "provider.rst" file and added two new lines as shown below. provider diagram ---------------- .. inheritance-diagram:: CMS.cloud.DbModel.CloudProvider Then i did "$ make html" again, after that i could see the new heading "provider diagram", but could not see any diagram. I did not get any errors. Note: ===== * Here CloudProvider is a module. ############ provider.rst fiel############ DbModel Package =============== :mod:`CPTypes` Module --------------------- .. automodule:: CMS.cloud.DbModel.CPTypes :members: :undoc-members: :show-inheritance: :mod:`CloudProvider` Module --------------------------- .. automodule:: CMS.cloud.DbModel.CloudProvider :members: :undoc-members: :show-inheritance: provider diagram ---------------- .. inheritance-diagram:: CMS.cloud.DbModel.CloudProvider :mod:`Network` Module --------------------- .. automodule:: CMS.cloud.DbModel.Network :members: :undoc-members: :show-inheritance: From sajuptpm at gmail.com Mon Dec 12 13:15:13 2011 From: sajuptpm at gmail.com (Saju M) Date: Mon, 12 Dec 2011 07:15:13 -0500 Subject: [Ncr-Python.in] Sphinx inheritance-diagram Issue In-Reply-To: References: Message-ID: Hi, Issue solved by adding "sphinx.ext.inheritance_diagram" to your conf.py - extensions From sajuptpm at gmail.com Mon Dec 12 13:16:45 2011 From: sajuptpm at gmail.com (Saju M) Date: Mon, 12 Dec 2011 07:16:45 -0500 Subject: [Ncr-Python.in] Sphinx inheritance-diagram Issue In-Reply-To: References: Message-ID: Another Issue: I am using "sphinx-apidoc" for documentation $ sphinx-apidoc -f -F -o . /home/sam/CMS $ make html I want to include class 'inheritance-diagram' in all my module document page. Right now, i have to edit all *rst file and add two lines as shown below, for each modules. class inheritance diagram ------------------------- .. inheritance-diagram:: CMS.cloud.DbModel.modulename Have any otherway to do it in single shot, like what "sphinx-apidoc" did for documentation ??? I could not find any option in document of "sphinx-apidoc" tool http://sphinx.pocoo.org/invocation.html#invocation-of-sphinx-apidoc From arulalant at gmail.com Wed Dec 14 06:09:23 2011 From: arulalant at gmail.com (Arulalan T) Date: Wed, 14 Dec 2011 10:39:23 +0530 Subject: [Ncr-Python.in] Documentation using Sphinx In-Reply-To: References: Message-ID: 2011/12/8 Saju M > > Thanks Arulalan, > > sphinx has the feature to view the class, method's source code and/or doc string > using the side panel link of every page. It should be like 'view > source' and 'view doc'. > > Could you please share links of documentation which have python source > code browsing feature .???? > The python code browsing feature is you have to enable while you running $ sphinx-quikstart . At that time it should ask question like, do you need code browsing option ? y/n [n] . By default it takes 'no' option. You have to give 'y' option. So that while you build html, that should come up with the code browsing style also. -- Regards, Arulalan.T Project Associate Centre for Atmospheric Sciences Indian Institute of Technology Delhi My Experiments In Gnu/Linux !? : http://tuxcoder.wordpress.com Kanchi Linux User Group Rocks ! : http://kanchilug.wordpress.com From sajuptpm at gmail.com Wed Dec 14 06:20:01 2011 From: sajuptpm at gmail.com (Saju M) Date: Wed, 14 Dec 2011 00:20:01 -0500 Subject: [Ncr-Python.in] Documentation using Sphinx In-Reply-To: References: Message-ID: Thanks Arulalan, If we use "sphinx-apidoc" tool code browsing feature will come automatically. Another issue with 'inheritance-diagram -------------------------------------------------------- I am using "sphinx-apidoc" for documentation $ sphinx-apidoc -f -F -o . /home/sam/CMS $ make html I want to include class 'inheritance-diagram' in all my module document page. Right now, i have to edit all *rst file and add two lines as shown below, for each modules. class inheritance diagram ------------------------- .. inheritance-diagram:: CMS.cloud.DbModel.modulename Have any otherway to do it in single shot, like what "sphinx-apidoc" did for documentation ??? I could not find any option in document of "sphinx-apidoc" tool http://sphinx.pocoo.org/invocation.html#invocation-of-sphinx-apidoc From arulalant at gmail.com Wed Dec 14 13:18:57 2011 From: arulalant at gmail.com (Arulalan T) Date: Wed, 14 Dec 2011 17:48:57 +0530 Subject: [Ncr-Python.in] Documentation using Sphinx In-Reply-To: References: Message-ID: 2011/12/14 Saju M : > Thanks Arulalan, > > If we use "sphinx-apidoc" tool code browsing feature will come automatically. > > Another issue with 'inheritance-diagram > -------------------------------------------------------- > > I am using "sphinx-apidoc" for documentation > $ sphinx-apidoc -f -F -o . /home/sam/CMS > $ make html > > I want to include class 'inheritance-diagram' in all my module document page. > Right now, i have to edit all *rst file and add two lines as shown > below, for each modules. > > class inheritance diagram > ------------------------- > .. inheritance-diagram:: CMS.cloud.DbModel.modulename > > > Have any otherway to do it in single shot, like what "sphinx-apidoc" > did for documentation ??? > I could not find any option in document of "sphinx-apidoc" tool > http://sphinx.pocoo.org/invocation.html#invocation-of-sphinx-apidoc Sorry Saju, I searched in sphinx documentation site, couldnt get option to satisfy your need. If you think that some thing is not there in foss tool, then as a developer you itself develop/enhance it ! Scratch your own itch ! This is how most of the foss tools are developed. :-) Wishes. -- Regards, Arulalan.T Project Associate Centre for Atmospheric Sciences Indian Institute of Technology Delhi My Experiments In Gnu/Linux !? : http://tuxcoder.wordpress.com Kanchi Linux User Group Rocks ! : http://kanchilug.wordpress.com From sajuptpm at gmail.com Thu Dec 15 10:04:47 2011 From: sajuptpm at gmail.com (Saju M) Date: Thu, 15 Dec 2011 04:04:47 -0500 Subject: [Ncr-Python.in] UML diagrams from python source code Message-ID: Hi, I'm looking for a good tool that can automatically generatre UML diagrams from python source code. From richa.sinha at globallogic.com Fri Dec 16 11:16:12 2011 From: richa.sinha at globallogic.com (Richa Sinha) Date: Fri, 16 Dec 2011 15:46:12 +0530 Subject: [Ncr-Python.in] GlobalLogic PYTHON/JAVA In-Reply-To: References: Message-ID: Hi All , Trust you doing well.. GlobalLogic is looking for highly skilled *Python Developers/Sr.Developers* , *JAVA DEVELOPERS/Sr. Developers* for one of our strategic engagements with * GOOGLE. * Following are the details: > >> *Python Developer(s)/Sr. Developers* >> >> >> >> Experience: 1-5 Yrs >> >> Min Qualification: BS/BE/B.Tech/MCA Regular >> >> Job Location: Client site- Gurgaon Google office >> > Positions: 20 >> >> * * >> >> *Requisites:* >> >> >> - * * OOPS concepts in Python >> - Exposure to python as a language , not only as a script >> - Good knowledge of File handling and XML parsing >> - Good to have experience in Multithreading in python. >> - Usage of inbuilt data types. >> - Implementation Of various design patterns >> - Should have Worked On python specific packages >> - Should have Worked On python specific frameworks like >> django, zope, >> - Exposure to middlewares, decorators, etc. >> - He should have worked on web apps instead of desktop apps. >> >> For Python: Send updated CV to richa.sinha at globallogic.com > * >> * >> >> *JAVA Positions: * >> >> * >> * >> >> *Min Qualification*: BS/BE/B.Tech/MCA or equivalent. >> >> *Location* ? Client site- Gurgaon Google office >> >> *Positions: 10* >> *Experience*: Total work exp should be 2 - 5 yrs >> >> - Work experience and relevant experience in internet architecture >> and software development. >> - Fluency in at least two of the following languages: Java, >> JavaScript. >> - Expertise in object-oriented programming and design patterns >> (primarily MVC). >> - Hands on experience in database design, SQL and any ORM tool like >> Hibernate/JDO etc. >> - Experience in TDD based developmen. >> >> >> *Desired Skills*: >> >> - Innovativeness; ability to think outside the box . >> - Creativity and problem-solving ability . >> - Very good communication skills; must be able to gather requirements >> from potential users and discuss the requirements effectively with a >> technical team of developers . >> - Previous experience in developing web applications will be an added >> advantage. >> Working knowledge of linux environment is a plus. >> - Previous experience of working with Google tools/gadgets is a big >> plus. >> >> For Java : Send updated CV to ankit.bansal1 at globallogic.com * Do visit* www.globallogic.com* **Share this mail with your friends, alumni groups,communities etc., spread the great opportunity :) * -- Regards, Richa Sinha | Talent Acquisition *Leaders in Software R&D Services* *www.globallogic.com* ARGENTINA |CHINA | INDIA | ISRAEL | UKRAINE | UK | USA Office: +91-120-406-2378 http://www.youtube.com/watch?v=V4pwY800TII -------------- next part -------------- An HTML attachment was scrubbed... URL: From hildebrand.us at gmail.com Tue Dec 20 06:36:04 2011 From: hildebrand.us at gmail.com (hildebrand victor) Date: Tue, 20 Dec 2011 13:36:04 +0800 Subject: [Ncr-Python.in] UML diagrams from python source code In-Reply-To: References: Message-ID: Have you seen this? http://stackoverflow.com/questions/260165/whats-the-best-way-to-generate-a-uml-diagram-from-python-source-code Regards HB -------------- next part -------------- An HTML attachment was scrubbed... URL: From deontics at gmail.com Wed Dec 21 20:53:17 2011 From: deontics at gmail.com (vijay shanker) Date: Thu, 22 Dec 2011 01:23:17 +0530 Subject: [Ncr-Python.in] UML diagrams from python source code In-Reply-To: References: Message-ID: why do you want it visible !! On Tue, Dec 20, 2011 at 11:06 AM, hildebrand victor wrote: > Have you seen this? > > http://stackoverflow.com/questions/260165/whats-the-best-way-to-generate-a-uml-diagram-from-python-source-code > Regards > HB > > _______________________________________________ > http://mail.python.org/mailman/listinfo/ncr-python.in > Mailing list guidelines : http://lug-iitd.org/Mailing_List_Guidelines > -- scare can be rearranged as sacre -------------- next part -------------- An HTML attachment was scrubbed... URL: From sajuptpm at gmail.com Thu Dec 22 06:47:22 2011 From: sajuptpm at gmail.com (Saju M) Date: Thu, 22 Dec 2011 00:47:22 -0500 Subject: [Ncr-Python.in] unfortunate-python Message-ID: http://excess.org/article/2011/12/unfortunate-python/ -- Saju Madhavan saju at fluentsoft.com +91 09535134654 From sss at tradus.in Sat Dec 24 15:33:52 2011 From: sss at tradus.in (Sandeep Srinivasa) Date: Sat, 24 Dec 2011 20:03:52 +0530 Subject: [Ncr-Python.in] [Commercial] Internships at a top 10 ecommerce venture Message-ID: hi, We are looking for Tradus - one of india's largest ecommerce initiatives (incidentally, we are owned by Naspers which owns a large chunk of Facebook). We have some very cool projects in ERP, supply chain and CRM systems engineering and we are thinking of powering it using Python. Benefits include best in industry stipends, flight tickets and all the pizza you can eat! Please do share your open source code repositories (github, bitbucket, etc. ) if you have any. thanks -Sandeep -------------- next part -------------- An HTML attachment was scrubbed... URL: