how you think - if needs small executable creating from python code?
executable from python cod
Collapse
This topic is closed.
X
X
-
NickolayTags: None -
Steven Bethard
[OT] Re: executable from python cod
Mmmm... Python cod. I'd serve it with a nice dynamic-typing salsa, a
side of spicy multiple-inheritance pilaf and a creamy tuple-unpacking
mousse for dessert! =)
Steve
-
Diez B. Roggisch
Re: executable from python cod
> how you think - if needs small executable creating from python code?
Its hard to understand what you actually want - so I've got to resort to
more-or-less wild guessing:
You seem to ask about python standalone executables, preferrably compiled
and small in size. The answer is: No, that's not doable. There exist things
like pyexe, that attempt to create compact installers - only the neccessary
modules, and the core interpreter. Maybe that helps you?
--
Regards,
Diez B. Roggisch
Comment
-
Peter Hansen
Re: executable from python cod
Diez B. Roggisch wrote:[color=blue]
> You seem to ask about python standalone executables, preferrably compiled
> and small in size. The answer is: No, that's not doable. There exist things
> like pyexe, that attempt to create compact installers - only the neccessary
> modules, and the core interpreter. Maybe that helps you?[/color]
Diez mistyped: it's actually "py2exe". A Google search will reveal
all additional details...
-Peter
Comment
-
Nickolay
Re: executable from python cod
"Diez B. Roggisch" <deetsNOSPAM@we b.de> wrote in message news:<co2p3s$in q$02$1@news.t-online.com>...[color=blue]
> You seem to ask about python standalone executables, preferrably compiled
> and small in size. The answer is: No, that's not doable. There exist things
> like pyexe, that attempt to create compact installers - only the neccessary
> modules, and the core interpreter. Maybe that helps you?[/color]
No i need it help.
I created small compiler(real, not packer - like py2exe) to compile
basic python code(to work compiled program - not need it python??.dll
or *.pyd files). Simple py programs, after compiling has size 1-3,4
kb. But i don't know if it need... That's why i ask you.
Comment
-
Diez B. Roggisch
Re: executable from python cod
> No i need it help.[color=blue]
> I created small compiler(real, not packer - like py2exe) to compile
> basic python code(to work compiled program - not need it python??.dll
> or *.pyd files). Simple py programs, after compiling has size 1-3,4
> kb. But i don't know if it need... That's why i ask you.[/color]
When it works - sure, I bet a lot of people are interested.
--
Regards,
Diez B. Roggisch
Comment
-
bearophile
Re: executable from python cod
gergina@abv.bg (Nickolay), this is quite interesting. Can you tell us
some more about it?
How we can find/try it?
How much language can it compile (can it use lists?)
Is the compiler written in Python (this probably makes it simpler to
create)?
Bearophile
Comment
-
Nickolay
Re: executable from python cod
"Diez B. Roggisch" wrote in message[color=blue]
> When it works - sure, I bet a lot of people are interested.[/color]
Thanks for your opinion. I will continue work, but i have a "general
question"
- How name it? :)
"bearophile " wrote in message[color=blue]
> ... this is quite interesting. Can you tell us
> some more about it?[/color]
compiler is 32 bits,Intel family
[color=blue]
> How we can find/try it?[/color]
In this momement only on my comuter ;)
But when i ready with first version, i'll put message to many palces
[color=blue]
> How much language can it compile (can it use lists?)[/color]
assembler, and basic code other languages - i have problem with
classes
[color=blue]
> Is the compiler written in Python (this probably makes it simpler to
> create)?[/color]
No but may be will be. I wish to create an absolute free compiler and
IDE with open source.
that's all
Comment
Comment