[BangPypers] Review of PyCon 2010 Invitation

2010-07-02 Thread Gopalakrishnan Subramani
Hi Pypers, I had great Python meet up in June at IIMB and met *Noufal Ibrahim and other python guys.* *Noufal Ibrahim asked us to spread the word.. Here is message I have written for our developers (40+) and I will be sending this to 100s of my other friends and ask them to forward to many others

[BangPypers] Entry fees for Pycon 2010

2010-07-05 Thread Gopalakrishnan Subramani
Hello, Do you guys have any rough figure for Pycon 2010 entry fee per attendee for corporate members? It may be too early, but we can plan out if our team fund can be provided by the company. Regards, Gopalakrishnan, http://stacked.in ___ BangPypers m

Re: [BangPypers] python program to fetch input data in complete bit format

2010-07-07 Thread Gopalakrishnan Subramani
If I remember, Python 3.0 gas byte as a data type where you can play with bytes. Otherwise you can open file with read and binary mode rf = open("README.txt", "rb") bytes = f.read(n) # n bytes or simply read() but it returns string wf = open("README.txt", "wb") wf.write(bytes) #technically str

[BangPypers] Need Python websites and blogs within India

2010-07-23 Thread Gopalakrishnan Subramani
Hi All, I am collecting information for python related websites and blogs. I am primarily looking for the sites already offer RSS 1.0/2.0 or ATOM feeds with clear separation for python related information. A generic python related info like CPython, IronPython, Jython etc shall be mentioned here

Re: [BangPypers] python speed comparison

2010-07-28 Thread Gopalakrishnan Subramani
IronPython (on .NET) and Jython (on Java) capable to use the multi core processors in your PC and they works faster than the CPython. Beware that not all the python packages shall be working with IronPython or Jython. Regards, Krish, http://www.stacked.in ___

Re: [BangPypers] Beginner help

2010-10-02 Thread Gopalakrishnan Subramani
If you want to be too smart, Emacs is the best one for all your typing need. It works well on Windows/Macs/Linux/Unix operating system. pymacs enable you to detect the basic python related error in emacs. On Sat, Oct 2, 2010 at 9:34 AM, Vishal wrote: > if you are on Windows, try out PyScripter

Re: [BangPypers] Latest Cricket News in Command Line

2010-10-04 Thread Gopalakrishnan Subramani
I don't think, I will be giving you the complete working code, here is sample one. sites = { 0: "<>", 1: "<>" } X= input('BBC Cricket News:1 , Cricinfo Cricket News:2 \n enter your choice: ') if sites.has_key((int(X)): news_feed = feedparser.parse(sites[int(X)]) for entry in news_feed.en

Re: [BangPypers] Python coaching classes

2010-10-13 Thread Gopalakrishnan Subramani
I will be interested in advanced python session anywhere in Bangalore. On Wed, Oct 13, 2010 at 11:35 AM, Kenneth Gonsalves wrote: > On Wed, 2010-10-13 at 11:32 +0530, jayasimha makineni wrote: > > on "there will be soon" > > it is a secret - all will be revealed at an appropriate time. > -- > r

Re: [BangPypers] Python coaching classes

2010-10-14 Thread Gopalakrishnan Subramani
I would be interested as trainee for advanced python courses. On Thu, Oct 14, 2010 at 10:25 AM, Kenneth Gonsalves wrote: > On Wed, 2010-10-13 at 19:02 +0530, Gopalakrishnan Subramani wrote: > > I will be interested in advanced python session anywhere in Bangalore. > > as a

Re: [BangPypers] Python coaching classes

2010-10-14 Thread Gopalakrishnan Subramani
iPython shell 5. Debugging python applications 6. Python meta class features 7. Boost.Python (Boost Python C++ interface) Regards, Krish 4. On Thu, Oct 14, 2010 at 2:46 PM, Kenneth Gonsalves wrote: > On Thu, 2010-10-14 at 14:43 +0530, Gopalakrishnan Subramani wrote: > > I would be i

Re: [BangPypers] When *not* to use Python

2010-10-20 Thread Gopalakrishnan Subramani
I won't develop DESKTOP based application in Python. Desktop means non-browser based application but like MFC/VC++ stuffs. On Wed, Oct 20, 2010 at 5:28 PM, Senthil Kumaran wrote: > On Wed, Oct 20, 2010 at 04:57:52PM +0530, Noufal Ibrahim wrote: > > learners, I'm wondering when you would *not* u

[BangPypers] ZeroMQ & Python

2010-10-30 Thread Gopalakrishnan Subramani
Anybody had experience in using ZeroMQ? I heard that AMQP has flaw in the design through news posting. When I want to make independent applications who works based on message queue, it is worth considering ZeroMQ? Regards, Krish ___ BangPypers mailing l

Re: [BangPypers] ZeroMQ & Python

2010-10-30 Thread Gopalakrishnan Subramani
stent. What is the good way to handle the persistent in ZeroMQ? Regards, Krish On Sat, Oct 30, 2010 at 10:47 PM, Pradeep Gowda wrote: > On Sat, Oct 30, 2010 at 12:52 PM, Gopalakrishnan Subramani > wrote: > > Anybody had experience in using ZeroMQ? I heard that AMQP has flaw in the &

Re: [BangPypers] Access xml file form python script

2010-11-02 Thread Gopalakrishnan Subramani
lxml also can be used along with the elementtree. Personally I liked the element tree APIs and elegance. On Tue, Nov 2, 2010 at 1:47 PM, Shashidhar P wrote: > Hi Avinash, > There is simple python library for parsing the XML file, accessing data, > adding, editing. > It is LXML. You can refer its

Re: [BangPypers] editor for restructured text

2011-05-01 Thread Gopalakrishnan Subramani
make emacs to fit into their way(customize). -- Gopalakrishnan Subramani * On Fri, Apr 29, 2011 at 12:36 PM, Kenneth Gonsalves wrote: > On Fri, 2011-04-29 at 12:29 +0530, Noufal Ibrahim wrote: > > > in fedora the ReSt thingie is there by default > > > > Opening

[BangPypers] Pyramid and open-id

2011-05-02 Thread Gopalakrishnan Subramani
Anybody works here on Pyramid web framework? I have an aggregation portal, I am planing to migrate to Pyramid in a month time. I am looking for open-id authentication to use with Pyramid. Google search shows me https://github.com/ralphbean/pyramid_openid Any other framework do you use for open-id

Re: [BangPypers] Web Application Development

2011-05-05 Thread Gopalakrishnan Subramani
e not suite your need, Django would be ideal choice for average web developer. I personally prefer Pyramid.. Regards, Gopalakrishnan Subramani On Thu, May 5, 2011 at 6:39 PM, Noufal Ibrahim wrote: > Senthil Kumaran writes: > > > On Thu, May 05, 2011 at 06:06:40PM +0530,

Re: [BangPypers] The myth of free software

2011-05-16 Thread Gopalakrishnan Subramani
east bothered about 'idiot' or 'ignorant' you have mentioned.. I would advise them to learn first than discussing in this forum.. PS: OP should calm down and mind his words!! Regards, Gopalakrishnan Subramani On Tue, May 17, 2011 at 11:41 AM, Santosh Rajan wrote: >

Re: [BangPypers] Pyramid and open-id

2011-05-17 Thread Gopalakrishnan Subramani
I don't know what you mean by automatic.. The thread local helps to have global variables per thread so that it preserves the changes made in one thread should not affect another global variable in another thread.. In Pylons, request & context (may be many other stuffs) are treated as a global va

Re: [BangPypers] Web Application Development

2011-05-19 Thread Gopalakrishnan Subramani
/helps/blogs available 3. There are many open-source applications to learn from 4. There are forum/blog/cms systems Django is self contained solution, where it has ORM/Templates/Views/Routing tightly couples, IMHO. Where as in Pyramid, you have Options.. Regards, Gopalakrishnan Subramani On Thu

Re: [BangPypers] Scratch Python

2011-05-23 Thread Gopalakrishnan Subramani
http://diveintopython.org/ nice book as well.. -- Gopalakrishnan Subramani On Mon, May 23, 2011 at 9:05 PM, Rajkannan Rajan wrote: > On Mon, May 23, 2011 at 8:56 PM, Ananya Sharma wrote: > > try youtube tutorials along with the online documentation. > > > > On Mon, May

[BangPypers] How to compare the relevancy between news headlines?

2011-06-13 Thread Gopalakrishnan Subramani
All, While looking into news.google.co.in site, they find the similar news by grouping them.. For example, The following news headlines from different online portal are grouped together. Jayalalithaa meets PM, DMK watches closely Jaya to meet PM today in New Delhi Jaya-PM meet, 'jittery' DMK wat

Re: [BangPypers] How to compare the relevancy between news headlines?

2011-06-14 Thread Gopalakrishnan Subramani
Thanks for suggestion. Can you give me a specific NLT toolset/approach with example if you have experience already? On Tue, Jun 14, 2011 at 12:57 PM, Venkatraman S wrote: > On Tue, Jun 14, 2011 at 12:07 PM, Gopalakrishnan Subramani < > gopalakrishnan.subram...@gmail.c

Re: [BangPypers] How to compare the relevancy between news headlines?

2011-06-14 Thread Gopalakrishnan Subramani
Dear All, Thanks for very informative answers. I would follow NLT & also try out Patra's advice as well. Post you my updates. -- Gopal On Tue, Jun 14, 2011 at 4:55 PM, Gora Mohanty wrote: > On Tue, Jun 14, 2011 at 1:28 PM, Gopalakrishnan Subramani > wrote: > > Thanks fo

Re: [BangPypers] How to compare the relevancy between news headlines?

2011-06-14 Thread Gopalakrishnan Subramani
Thank you Anand.. OpenCalais seems more promising.. I will play around this weekend.. -- Gopal On Tue, Jun 14, 2011 at 5:44 PM, Anand Balachandran Pillai < abpil...@gmail.com> wrote: > On Tue, Jun 14, 2011 at 5:16 PM, Gopalakrishnan Subramani < > gopalakrishnan.subram...@g

Re: [BangPypers] looking for python developers

2011-06-17 Thread Gopalakrishnan Subramani
Prem, Mentioning [Job] in title is more appropriate. Is your company name is that secret? I don't think, you get fantastic coder program for without knowing company.. All the best, Gopal On Fri, Jun 17, 2011 at 1:18 PM, prem wrote: > Hi everyone, > our company is looking for some python deve

Re: [BangPypers] [pythonpune] need for Python based CRM/ERP system...extensible

2011-07-24 Thread Gopalakrishnan Subramani
Sorry, I missed few mail chain.. I apologies if someone/you pointed out OpenERP. Did you ever try OpenERP? http://en.wikipedia.org/wiki/OpenERP http://www.openerp.com/ I go through the Open ERP UI and it was amazing. It is driven through xml. Thanks & Regards, Gopal On Sun, Jul 24, 2011 at 11

Re: [BangPypers] [pythonpune] need for Python based CRM/ERP system...extensible

2011-07-24 Thread Gopalakrishnan Subramani
ou need to stick to design philosophy of Trac ever. If you ever choose Trac then creating a CRM is not time consuming if you use Django or Pyramid. Regards, Gopal On Sun, Jul 24, 2011 at 11:41 PM, Ramdas S wrote: > I would also > > On Mon, Jul 25, 2011 at 11:01 AM, Gopal

Re: [BangPypers] PyPy outperforms C in microbenchmark

2011-08-03 Thread Gopalakrishnan Subramani
I could not understand the PyPy intention in having another run-time. Can we see having PyPy running Python programs, 1. As a challenge? (A language can have its own runtime with little improved performance) or 2. Potential for future to replace/co-exists CPython forever with strong community s

Re: [BangPypers] PyPy outperforms C in microbenchmark

2011-08-03 Thread Gopalakrishnan Subramani
2011 at 11:10 AM, Dhananjay Nene wrote: > On Wed, Aug 3, 2011 at 9:58 PM, Gopalakrishnan Subramani > wrote: > > I could not understand the PyPy intention in having another run-time. > > > > Can we see having PyPy running Python programs, > > > > 1. As a challen

Re: [BangPypers] PyPy outperforms C in microbenchmark

2011-08-04 Thread Gopalakrishnan Subramani
I want to tryout Tornado with MongoDB (AsyncMongo).. I would try pypy as a runtime. Thanks for explanation!! Thanks & Regards, Gopal On Thu, Aug 4, 2011 at 6:57 AM, Senthil Kumaran wrote: > On Thu, Aug 04, 2011 at 06:12:37PM +0530, Noufal Ibrahim wrote: > > Senthil Kumaran writes: > > > Just

Re: [BangPypers] how to write Operating System in python

2011-08-11 Thread Gopalakrishnan Subramani
Look at the Lua attempt to create OS. http://luaos.net/ Lua script is more readable. Personally, I would never prefer to create an OS in Python. If you get minimal open sourced RTOS source code (many found in sourge forge), you could start with basic and see the similar approach in Python. If yo

[BangPypers] Language Parsing and output generation

2011-08-22 Thread Gopalakrishnan Subramani
I have interesting problem to solve. We have a language called "Description Language" less widely known outside but used very much in automation domain. The examples are given below. By definition, language is readable and I could could not provide the language spec due to restriction (really close

Re: [BangPypers] Language Parsing and output generation

2011-08-22 Thread Gopalakrishnan Subramani
Source language IO is very limited and it has functions to map to IO and UI. As a total, they have around 100+ function. Those can be easily done in Lua. -- Gopal On Mon, Aug 22, 2011 at 6:10 PM, Senthil Kumaran wrote: > On Mon, Aug 22, 2011 at 01:09:19PM -0600, Gopalakrishnan Subram

Re: [BangPypers] Language Parsing and output generation

2011-08-22 Thread Gopalakrishnan Subramani
wrote: > Gopalakrishnan Subramani writes: > > > Source language IO is very limited and it has functions to map to IO and > UI. > > As a total, they have around 100+ function. > > > > Those can be easily done in Lua. > > [...] > > For a project in on

Re: [BangPypers] Embedded python mail server

2011-08-23 Thread Gopalakrishnan Subramani
Use the http://hg.python.org/cpython/file/2.7/Lib/smtpd.py server. smtpd is a proxy so only look at the client interface level, you may not need to push to local server, no need to store to DB etc. you copy the file and modify and wrap to meet your automation needs and to get the response confirma

Re: [BangPypers] Language Parsing and output generation

2011-08-23 Thread Gopalakrishnan Subramani
< abpil...@gmail.com> wrote: > On Tue, Aug 23, 2011 at 11:15 AM, Gopalakrishnan Subramani < > gopalakrishnan.subram...@gmail.com> wrote: > > > I could make a grammar compiled myself. I will look into SPARK.. Anybody > > has > > experience in pyparsing http:

Re: [BangPypers] setuptools and distutils confusion

2011-08-23 Thread Gopalakrishnan Subramani
setuptools is for the users who use a package produced by someone. disutils is for users who produce the package. On Wed, Aug 24, 2011 at 12:35 AM, Amit Sethi wrote: > Hi all, > I am really confused as to how setuptools and distutils work. > Basically what i want to achieve is be able to inst

Re: [BangPypers] Embedded python mail server

2011-08-23 Thread Gopalakrishnan Subramani
2:03 PM, Gopalakrishnan Subramani > wrote: > > Use the http://hg.python.org/cpython/file/2.7/Lib/smtpd.py server. smtpd > is > > a proxy so only look at the client interface level, you may not need to > push > > to local server, no need to store to DB etc. > > > > you

Re: [BangPypers] setuptools and distutils confusion

2011-08-24 Thread Gopalakrishnan Subramani
Thanks Noufal. I misunderstood. I was using disutils for to create a package for my app. -- Gopal On Wed, Aug 24, 2011 at 12:53 AM, Noufal Ibrahim wrote: > Gopalakrishnan Subramani writes: > > > setuptools is for the users who use a package produced by someone. > > dis

Re: [BangPypers] Embedded python mail server

2011-08-24 Thread Gopalakrishnan Subramani
PM, Dhananjay Nene > > wrote: > >> On Wed, Aug 24, 2011 at 12:25 PM, Gopalakrishnan Subramani > >> wrote: > >>> So you basically look for SMTP and also a POP3 access to the server? > With > >>> that you could send a mail using SMTP and retrieve usi

Re: [BangPypers] Parsing data

2011-09-18 Thread Gopalakrishnan Subramani
Senthil and Gora Mohanty pointed out whats wrong on the code. This is alternative option, not its best since I feel always good to parse the file B based on file spec instead of the following approach. file_a_lines = open('FileA.txt').readlines() file_b_content = open('FileB.txt').read() for l

Re: [BangPypers] Parsing data

2011-09-18 Thread Gopalakrishnan Subramani
> > > Have you thought of using regular expressions?. It might make ur job > > easier. > > > > Checkout this link good explaination of reg exps. > > > > Thanks and Regards, > > Mahendra Naik > > > > > > 2011/9/18 Gopalakrishnan Su

[BangPypers] Python OCR Reader

2011-10-30 Thread Gopalakrishnan Subramani
Dear Group, Anyone can give good advises on OCR tools in Python? Not necessarily native python tools even with python wrapper will be good. I would never tweak or change the source code or learn deep into OCR technology. I just want a lib sort of things and Python wrapper to know. I found http://

Re: [BangPypers] [XPost][Slightly OT] Could you share your experiences about Python Freelance programming, from a programmer's perspective

2011-10-31 Thread Gopalakrishnan Subramani
"I have a friend, who's finished his education and looking for work." freelancing is stressful during startup days. It needs more discipline and skill than someone works in a corporate team. Until or unless he is extraordinary in taking business situation and executing them, don't recommend any fr

Re: [BangPypers] Python OCR Reader

2011-11-01 Thread Gopalakrishnan Subramani
. I did small experiments with tesseract. But not sure whether it is the best library in python world for most of my cases. Thanks, Gopal On Mon, Oct 31, 2011 at 10:27 PM, Senthil Kumaran wrote: > On Mon, Oct 31, 2011 at 11:30:21AM +0530, Gopalakrishnan Subramani wrote: > > Anyone can

Re: [BangPypers] Python OCR Reader

2011-11-02 Thread Gopalakrishnan Subramani
011 at 8:47 AM, Gopalakrishnan Subramani < > gopalakrishnan.subram...@gmail.com> wrote: > > > Well, I would not touch any core implementation of tesseract client or > the > > core binaries of tesseract. > > I am trying to build a simple voice based advisory system

Re: [BangPypers] ubuntu fonts..

2011-11-08 Thread Gopalakrishnan Subramani
You could try using inconsolata font ( http://www.levien.com/type/myfonts/inconsolata.html), a mono space font which is available for ubuntu and windows. I use with emacs all the way on windows and ubuntu both. On Wed, Nov 9, 2011 at 8:14 AM, Sreenivas Reddy T < thatiparthysreeni...@gmail.com> wr

Re: [BangPypers] Pony mode

2011-11-10 Thread Gopalakrishnan Subramani
thank you. I will play around. On Thu, Nov 10, 2011 at 8:15 PM, Noufal Ibrahim wrote: > > If you're using Emacs and work with Django, you might find > Pony mode[1] useful. It seems to be quite feature rich. > > Footnotes: > [1] https://github.com/davidmiller/pony-mode > > -- > ~noufal > http:

Re: [BangPypers] Change the "From:" address using python smtplib

2012-10-30 Thread Gopalakrishnan Subramani
As per SPF, http://en.wikipedia.org/wiki/Sender_Policy_Framework and email server handling, your emails will be placed in junk mails in most of the mail server. As per your script, you send email from an email id which is different than the one which is used for authentication. Most of the SMTP s

Re: [BangPypers] Hello Experts and Open Source Enthusiasts

2012-12-02 Thread Gopalakrishnan Subramani
As Anand said, I recommend a PHP based, ready to use, free and open source application. Zen cart is good. Since you start the new business, time required for you to learn python, develop a matured website, handle payments and hosting will take months of effort. You need to see whether your user/c

[BangPypers] Sqlalchemy Schema migration

2012-12-02 Thread Gopalakrishnan Subramani
Do you recommend a good sqlalchemy migration tools? I am no-sql guy (used redis and mongo db), I was not worried about revisions and adding and removing attributes. I used to have a script that add or remove the required attributes on redis(pickled) and mongodb. When it comes to SQL, it needs alte

Re: [BangPypers] Sqlalchemy Schema migration

2012-12-03 Thread Gopalakrishnan Subramani
y like it. Approaches are similar to > git. In case you have any issues hangout in #sqlalchemy in > irc.freenode.net > . > > On Sun, Dec 2, 2012 at 6:31 PM, Gopalakrishnan Subramani < > gopalakrishnan.subram...@gmail.com> wrote: > > > Do you recommend a good sqlalchem

[BangPypers] Dynamic Markdown & Textile Blog/content app

2012-12-10 Thread Gopalakrishnan Subramani
I am curious about a blog application (currently rolling out 0.0.1, I will put on github soon), like pelican but little differences. 1. Pages are dynamic 2. Flask, Jinja2 as development platform 3. Yaml, Json and Pelican style headers for the meta information (that covers category, tags etc, sea

Re: [BangPypers] Dynamic Markdown & Textile Blog/content app

2012-12-13 Thread Gopalakrishnan Subramani
too complex. > > Overall, pelican has some good ideas and is being actively developed. But > it is not really suitable for a power user. > > Regards, > Arun > > > On Tue, Dec 11, 2012 at 9:24 AM, Gopalakrishnan Subramani < > gopalakrishnan.subram...@gmail.com> wrote: &g

Re: [BangPypers] [OT] Introducing myself

2013-01-07 Thread Gopalakrishnan Subramani
I agree with Jaaga comments. Jaaga is little noisy due to near by busy road, I would prefer that place if you don't get another place. You also find co-working spaces in many places as Bangalore runs a lot of startups and early stage companies ready to share per seat basis. I love the Jaaga idea an

Re: [BangPypers] Death of Aaron Swartz

2013-01-14 Thread Gopalakrishnan Subramani
Markdown is nice, I read a little about him in his infogami and reddit merge and html2text project and web.py. He was a great hacker, was able to move reddit from lisp to python (pylons) in short time (http://www.aaronsw.com/weblog/rewritingreddit) After he was fired by Wired, things didn't go wel

Re: [BangPypers] Hi All

2013-01-27 Thread Gopalakrishnan Subramani
You need to decide how to publish your generated PDF files. I can think of 2 approaches. 1. Generate PDF file which can be cached (either in file system or memory). Memory is not good choice though. This is case, use Django static file moduels. might be this https://docs.djangoproject.com/en/dev/

Re: [BangPypers] help to understand this code

2013-02-25 Thread Gopalakrishnan Subramani
I still recommend you go through the fundamentals of Python, I don't see any hurry in learning something new. Starts with printing "hello world", then conditions, loops, functions, Class, Objects. You don't need more than 2 weeks for this homework. Couple of late nights and weekends help you, It is

Re: [BangPypers] Evaluating Web Frameworks based on certain criteria

2013-04-02 Thread Gopalakrishnan Subramani
I was using Pylons for nearly 3 years and moved to Flask instead of Django. The decision is based on my 'opinion' on opinionated frameworks. Pylons and Pyramid is completely running DIY philosophy, it was not really fun for me (personal preference matter, no argument please). I need to look aroun

Re: [BangPypers] flask application issues

2013-08-30 Thread Gopalakrishnan Subramani
Check the static IP binding and post the exception here. If you host in on Linux, there could be issue with ip binding and port if you don't have permissions. On Fri, Aug 30, 2013 at 7:23 PM, Adivandhya wrote: > hi everyone, > > i am writing a basic flask application who's structure is as

[BangPypers] NLTK

2013-09-07 Thread Gopalakrishnan Subramani
Dear All, I want to build a simple automatic text based chat bot for mobile, tablet specs for proof of concept. Some Ref to talk now: http://www.gsmarena.com/samsung_i9300_galaxy_s_iii-4238.php User: Galaxy SIII Weight Chat Bot: 133 g - User: Galaxy SIII Weight (space between Galaxy

Re: [BangPypers] NLTK

2013-09-07 Thread Gopalakrishnan Subramani
3 at 2:34 AM, Gopalakrishnan Subramani < > gopalakrishnan.subram...@gmail.com> wrote: > > > Dear All, > > > > I want to build a simple automatic text based chat bot for mobile, > tablet > > specs for proof of concept. > > > > How do you pl

Re: [BangPypers] Favorite tips/techniques

2013-09-10 Thread Gopalakrishnan Subramani
Not all keys in the dictionary can be expressed as attributes. Attributes has to follow the naming conventions. I had problems with user generated 'keys', JSON supported keys. On Tue, Sep 10, 2013 at 2:41 PM, Mandar Vaze / मंदार वझे < mandarv...@gmail.com> wrote: > Both Shabda and Nouful u

Re: [BangPypers] Favorite tips/techniques

2013-09-10 Thread Gopalakrishnan Subramani
Attributes are stylish, readable, feel native as object compared to dictionary. Sometimes I use setter methods to override the default assignments, modify getter to format the values and getter for virtual attributes for DSL stuffs. class DictObj(dict): def __getattr__(self, key): if

Re: [BangPypers] Python "Wat"s

2013-09-10 Thread Gopalakrishnan Subramani
We must be thankful for the people who invented the keyboard and stopped with single SPACE and TAB keys for column indentation. Every time you edit, mind compile the Python code on production critical time, there could be a landmine hidden in the white space on nano or remote vi. On Tue, Sep

Re: [BangPypers] NLTK

2013-09-15 Thread Gopalakrishnan Subramani
d costs > <10k. > > Regards, > Deepu > > On Sun, Sep 8, 2013 at 12:04 PM, Gopalakrishnan Subramani < > gopalakrishnan.subram...@gmail.com> wrote: > > > I have database of specs in json format. This is not manual effort. > > > > Right now, NLTK seems to be hard t

Re: [BangPypers] virtualenvs [was] Online Python workshop

2013-09-15 Thread Gopalakrishnan Subramani
I was not aware that --no-site-packages is default now. Thanks for info. On Mon, Sep 16, 2013 at 10:45 AM, Balachandran Sivakumar < benignb...@gmail.com> wrote: > Hi, > > On Mon, Sep 16, 2013 at 8:02 AM, svaksha ॥ स्वक्ष > wrote: > > specific python version (ex. /usr/bin/python3.3) and also pre

Re: [BangPypers] What are you using for developing desktop GUIs?

2013-09-27 Thread Gopalakrishnan Subramani
I have spent 10+ years of Desktop app development using VC++/.NET, mostly on Windows. After Windows XP SP 3 onwards, Microsoft changed the application installation and execution architecture, specifically the socket servers, firewall, administrator rights etc. We have WCF Web Service (part of MS .

Re: [BangPypers] What are you using for developing desktop GUIs?

2013-09-27 Thread Gopalakrishnan Subramani
We needed Desktop apps as our apps are based on Hardware interfacing, ie Density, Pressure, Flow etc measuring transmitters and control devices. Those devices use the special industrial protocols and each protocols has its own advantages, need specific device drivers based on vendors. Desktop based

Re: [BangPypers] [JOB]: Software Engineer

2014-04-16 Thread Gopalakrishnan Subramani
At least mention the company name & website [or show us the screen shots of bank balance and VC fund (just kidding)] On Wed, Apr 16, 2014 at 7:58 PM, Santhosh Edukulla < santhosh.eduku...@gmail.com> wrote: > Team, > > We have an opening for a programmer with the below skill set. Its a start

[BangPypers] Imaging Library: Pillow vs PIL, any insights?

2014-04-16 Thread Gopalakrishnan Subramani
Any notable differences between Pillow vs PIL? We need to create images dynamically from text & images, not looking for command line apps/features. ___ BangPypers mailing list BangPypers@python.org https://mail.python.org/mailman/listinfo/bangpypers

Re: [BangPypers] Imaging Library: Pillow vs PIL, any insights?

2014-04-16 Thread Gopalakrishnan Subramani
ing opencv. > If not, check out opencv. > On Apr 17, 2014 9:47 AM, "Gopalakrishnan Subramani" < > gopalakrishnan.subram...@gmail.com> wrote: > > > Any notable differences between Pillow vs PIL? We need to create images > > dynamically from text & image

Re: [BangPypers] Imaging Library: Pillow vs PIL, any insights?

2014-04-16 Thread Gopalakrishnan Subramani
Just gone thorough opencv, smart choice for Computer vision application. Now narrowing down to Pillow. Can Pillow to be used along with pngquant, optipng sort of image size reduction without loosing alpha transparency? On Thu, Apr 17, 2014 at 11:03 AM, Gopalakrishnan Subramani

Re: [BangPypers] Imaging Library: Pillow vs PIL, any insights?

2014-04-16 Thread Gopalakrishnan Subramani
s me is you want to > generate test images for some application. > Could you elaborate on it? > > To understand some filters you do need to read up the basics > On Apr 17, 2014 11:03 AM, "Gopalakrishnan Subramani" < > gopalakrishnan.subram...@gmail.com> wrote: >

Re: [BangPypers] Imaging Library: Pillow vs PIL, any insights?

2014-04-17 Thread Gopalakrishnan Subramani
can be used, videos can be > buffered dynamically. > > With Best Regards, > > Radhakrishna Rao L > > > On Thu, Apr 17, 2014 at 11:44 AM, Gopalakrishnan Subramani < > gopalakrishnan.subram...@gmail.com> wrote: > > > OK, we have product attributes like title, br