Re: How to create python web framework for ERP

2014-09-11 Thread Vimal Rughani
On Tuesday, 9 September 2014 13:55:24 UTC+5:30, Vimal Rughani  wrote:
 Hi All,
 
 
 
 Greetings !
 
 
 
 I am bit familiar with Django and Python. I want to create ERP on python. 
 Initially I feel Django will be good option for My Own ERP, but after working 
 bit on that I feel it doesn't fit with my requirement. So I decided to create 
 my own python based web framework for ERP. Can you please suggest me better 
 book / video / resources / content which help me to build proper web 
 framework for ERP.
 
 
 
 Thanks

Thanks to all for your kind support. I looking into different suggestions given 
by you. Thanks again for your time
-- 
https://mail.python.org/mailman/listinfo/python-list


How to create python web framework for ERP

2014-09-09 Thread Vimal Rughani
Hi All,

Greetings !

I am bit familiar with Django and Python. I want to create ERP on python. 
Initially I feel Django will be good option for My Own ERP, but after working 
bit on that I feel it doesn't fit with my requirement. So I decided to create 
my own python based web framework for ERP. Can you please suggest me better 
book / video / resources / content which help me to build proper web framework 
for ERP.

Thanks
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: How to create python web framework for ERP

2014-09-09 Thread Vimal Rughani
On Tuesday, 9 September 2014 14:09:48 UTC+5:30, Stéphane Wirtel  wrote:
 On 9 Sep 2014, at 10:25, Vimal Rughani wrote:
 
 
 
  Hi All,
 
 
 
  Greetings !
 
 
 
  I am bit familiar with Django and Python. I want to create ERP on 
 
  python. Initially I feel Django will be good option for My Own ERP, 
 
  but after working bit on that I feel it doesn't fit with my 
 
  requirement. So I decided to create my own python based web framework 
 
  for ERP. Can you please suggest me better book / video / resources / 
 
  content which help me to build proper web framework for ERP.
 
 
 
  Thanks
 
  -- 
 
  https://mail.python.org/mailman/listinfo/python-list
 
 Use Odoo.
 
 
 
 --
 
 Stéphane Wirtel - http://wirtel.be - @matrixise

Thanks Stéphane, for your suggestion. I know about Odoo and Odoo is good choice 
for domain related to Business. I am developing solution for Education / 
schools / colleges. Requirements are bit complex so I want to have own 
framework.
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: Programming ideas?

2009-09-14 Thread Vimal
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 09/12/2009 07:43 PM, Someone Something wrote:
 I know you've probably had this question a million and one times but here it
 is again. I'm intermediate at C, pretty good at Java (though I really don't
 want to program in this), okay at perl and I've just learned python. But, I
 have no more ideas to write programs/scripts for! Any ideas will be helpful?
 
 

Hi,

You can try out 'http://www.codechef.com/' and Google Code jam if you
are interested in solving problems and algorithms. The good thing is
that code-chef have good prizes for the winners every month.

Thanks
- -- 


Vimal Kumar A R



-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org/

iEYEARECAAYFAkquJvUACgkQNAxkGPLbEen5YwCcDcStRgw0BiW1w9E4P9Vw7Wgo
LpEAniRxcAJl5TheSEj7QO1dCCn7cleO
=un49
-END PGP SIGNATURE-
-- 
http://mail.python.org/mailman/listinfo/python-list


checking for negative values in a list

2007-12-17 Thread vimal
hi all,
-- 
http://mail.python.org/mailman/listinfo/python-list


checking for negative values in a list

2007-12-17 Thread vimal
hi all,

i am new to python guys.
   hope u will help me with this

   i have a list of numbers

  say a = [1,-1,3,-2,4,-6]

  how should i check for negative values in the list
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: checking for negative values in a list

2007-12-17 Thread vimal
thanks for your help Tim and Marc.
:)
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Iteration for Factorials

2007-10-22 Thread vimal
On Oct 22, 5:43 pm, Marco Mariani [EMAIL PROTECTED] wrote:
 Py-Fun wrote:
  def itforfact(n):
  while n100:
  print n
  n+1
  n = input(Please enter a number below 100)

 You function should probably return something. After that, you can see
 what happens with the result you get.


i am just suggesting u an idea
but i dont know it satisfies ur needs

x=10
def cal_range(10)
for i in range(10):
print 2**i


-- 
http://mail.python.org/mailman/listinfo/python-list


generating range of numbers

2007-10-03 Thread vimal
hi all,

 i am new to python.
 i just want to generate numbers in the form like:

1,2,4,8,16,32.to a maximum of 1024

using a range function

-- 
http://mail.python.org/mailman/listinfo/python-list