executable from python cod

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Nickolay

    executable from python cod

    how you think - if needs small executable creating from python code?
  • Steven Bethard

    #2
    [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

    Comment

    • Diez B. Roggisch

      #3
      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

        #4
        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

          #5
          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

            #6
            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

              #7
              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

                #8
                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

                Working...