Code Generator written in python

S

Stefan Behnel

nyoka, 13.01.2010 16:48:
Can someone help me with sample python code for a code generator

Such as Cheetah?

http://www.cheetahtemplate.org/

BTW, you might want to be more specific about your problem at hand. Code
generation is a rarely used technique in Python. Most of the time, it's
more maintainable (and not necessarily harder or more work) to actually
write the code by hand.

Stefan
 
P

Peter Otten

nyoka said:
Can someone help me with sample python code for a code generator
print

Seriously, you have to provide more information if you want a meaningful
answer. If the generated code is Python, too, then the advice is most likely
that you don't need to generate any code at all.

Peter
 
A

Arnaud Delobelle

nyoka said:
Can someone help me with sample python code for a code generator

Sure, here are some example of self-evaluating python objects, i.e. for each v
below,

v == eval(v)

I'm quite proud of the last one.

v = (lambda x:x%('"''""'+x+'"''""'))("""(lambda x:x%%('"''""'+x+'"''""'))(%s)""")

v = (lambda x:x%('r\"'+x+'\"'))(r"(lambda x:x%%('r\"'+x+'\"'))(%s)")

v = (lambda x:x%`x`)('(lambda x:x%%`x`)(%s)')

v = (lambda x: x+"("+`x`+")")('(lambda x: x+"("+`x`+")")')

v = "\"%s\" %% ((r\"%s\",)*2)" % ((r"\"%s\" %% ((r\"%s\",)*2)",)*2)

:)
 
G

Gabriel Genellina

En Wed, 13 Jan 2010 13:09:38 -0300, Arnaud Delobelle
Sure, here are some example of self-evaluating python objects, i.e. for
each v
below,

v == eval(v)

I'm quite proud of the last one.

And I'm still trying to disembowel it! :)
 
T

trzewiczek

Sure, here are some example of self-evaluating python objects, i.e. for each v
below,

v == eval(v)

I'm quite proud of the last one.

v = (lambda x:x%('"''""'+x+'"''""'))("""(lambda x:x%%('"''""'+x+'"''""'))(%s)""")

v = (lambda x:x%('r\"'+x+'\"'))(r"(lambda x:x%%('r\"'+x+'\"'))(%s)")

v = (lambda x:x%`x`)('(lambda x:x%%`x`)(%s)')

v = (lambda x: x+"("+`x`+")")('(lambda x: x+"("+`x`+")")')

v = "\"%s\" %% ((r\"%s\",)*2)" % ((r"\"%s\" %% ((r\"%s\",)*2)",)*2)

:)
If you're proud of the last one, consider moving to Perl. Python is - as
I heard - about elegance and readability of code...
 
A

Arnaud Delobelle

trzewiczek said:
On 01/13/2010 05:09 PM, Arnaud Delobelle wrote: [...]
Sure, here are some example of self-evaluating python objects,
i.e. for each v below,

v == eval(v)

I'm quite proud of the last one. [...]
v = "\"%s\" %% ((r\"%s\",)*2)" % ((r"\"%s\" %% ((r\"%s\",)*2)",)*2)

:)
If you're proud of the last one, consider moving to Perl. Python is -
as I heard - about elegance and readability of code...

No thanks. It's far too easy to write unreadable code in Perl and I
like a challenge :)

Seriously - this is a self-evaluating string, not code for landing a
$1bn rocket on Mars. Do you expect it to be readable? I don't.
However, I definitely find a certain elegance to it.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,776
Messages
2,569,603
Members
45,191
Latest member
BuyKetoBeez

Latest Threads

Top