views:

82

answers:

2

Hello, very quick question. I am wondering if there are any software Django software that generates python coding automatically. If there are any, please let me know.

+1  A: 

I have never heard of python code generators. Python is a dynamic language where you can do almost anything. Instead of relying on static code generators known from the Java world, I would argue that you can write a couple of equivalent Python lines in most cases which is way more convenient.

In case you are looking for a Python lexer/parser, try pyparsing.

stefanw
Ok I will check it out
Shehzad009