Re: best python compiler

2020-08-14 Thread AudioGames . net Forum — Developers room : visualstudio via Audiogames-reflector
Re: best python compiler the thing with cython is that you can place your modules into 1 module and compile it into a .pyd file, and then create a launcher script that imports it and package that with pyinstaller and your module works.another approach is to use cython's --embed option

Re: best python compiler

2020-08-14 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: best python compiler Pyinstaller will at least know how to package cython-compiled code.  I know this works because that's what Synthizer is and I have one user using pyinstaller with it without doing anything extra.  I don't know if you can get pyinstaller to actually cythonize

Re: best python compiler

2020-08-14 Thread AudioGames . net Forum — Developers room : Turkce_Rap via Audiogames-reflector
Re: best python compiler @22Can Pyinstaller compile cyton? as fr as i know that it does.and the second one i think you can still compile pure python modules as well right? URL: https://forum.audiogames.net/post/561404/#p561404 -- Audiogames-reflector mailing list Audiogames-reflector

Re: best python compiler

2020-08-14 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: best python compiler @21Any code which goes through Cython can't be decompiled.  Any parts of the app which don't go through Cython aren't protected.You'll have to leave some modules unprotected, but they won't be your modules, they'll be third party dependencies from pip.  Cython

Re: best python compiler

2020-08-14 Thread AudioGames . net Forum — Developers room : Turkce_Rap via Audiogames-reflector
Re: best python compiler Correct me if i m wrong but, as far as i know you can cythonise your code and pyinstaller can compile it  as well. it won't protect your code from getting stolen though, The code won'T be that mutch  vulnurable. URL: https://forum.audiogames.net/post/561384

Re: best python compiler

2020-08-06 Thread AudioGames . net Forum — Developers room : bhanuponguru via Audiogames-reflector
Re: best python compiler @camlorni am also like you only. excited to know about computer,and how computer works, no one teaches me programming. i do learn on internet only. i have no one to ask other than internet about programming  but in different approach. i will change my approach. i

Re: best python compiler

2020-08-06 Thread AudioGames . net Forum — Developers room : bhanuponguru via Audiogames-reflector
Re: best python compiler @camlorni am also like you only. excited to know about computer and how it works. but in different approach. i will change my approach. i asked because mingw is available according to cython manuall and the guides din't work on my pc. URL: https

Re: best python compiler

2020-08-06 Thread AudioGames . net Forum — Developers room : bhanuponguru via Audiogames-reflector
Re: best python compiler @camlorni am also like you only. exited to know about computer and how it works. but in different approach. i will change my approach. i asked because mingw is available according to cython manuall and the guides din't work on my pc. URL: https

Re: best python compiler

2020-08-06 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: best python compiler @16Trying to program when you're young isn't the problem.  I was programming when I was 12 or 13.  It probably helped that I didn't have anyone to ask, though, and also that I was doing it for the joy of knowing how computers worked.  There's a lot in it, if you're

Re: best python compiler

2020-08-06 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector
Re: best python compiler @17, of course it is, but it seems like every blind guy wants to code and then they end up making the same mistakes your making - how can I obfuscate my code. The ultimate point is this: there is no way to protect your code. Even writing it in C/C++ (or any other

Re: best python compiler

2020-08-06 Thread AudioGames . net Forum — Developers room : bhanuponguru via Audiogames-reflector
Re: best python compiler ok ok. thanks for your replys and i will not post any questions unless i don't get answers i need on google. and also, @15, i don't like that line change your hobby. i love coding so it is my hobby. and also, no one have rights to say me chage my hobby. my hobby

Re: best python compiler

2020-08-06 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: best python compiler It’s that age, I’m afraid. An age where, unless the reward is apparent, someone will try a shorter route in order to bring themselves closer to that gratification.  Why do so many young blind people attempt programming is beyond me, but that is a discussion

Re: best python compiler

2020-08-06 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: best python compiler You need Visual Studio, but frankly it's no bigger than Mingw and Mingw is kind of buggy on Windows anyhow.  On good internet, an install takes like 15 minutes.  It's not as bad as it used to be.In general you're not going to have luck as a programmer until you

Re: best python compiler

2020-08-06 Thread AudioGames . net Forum — Developers room : visualstudio via Audiogames-reflector
Re: best python compiler hi,read it's documentation, and learn to write a setup script for it.then cythonize your scripts and place it beside your a python file and import it. then use PyInstaller to destribute that. URL: https://forum.audiogames.net/post/558803/#p558803

Re: best python compiler

2020-08-05 Thread AudioGames . net Forum — Developers room : bhanuponguru via Audiogames-reflector
Re: best python compiler so friends, i will agree with all of you replys. so, i have cython installed on my python envirement and i have mingw c/c++ compiler. but, i heard some were it can be used with cython. if any one knows how to use mingw in cython, please tell me. because it uses

Re: best python compiler

2020-08-05 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: best python compiler @11Or, as has been said repeatedly on this site and once on this thread, just compile parts or all of the app with Cython..net doesn't protect your code.  The JVM doesn't protect your code.  Anything less than using C/C++ in a release build with no debug symbols

Re: best python compiler

2020-08-05 Thread AudioGames . net Forum — Developers room : truecraig via Audiogames-reflector
Re: best python compiler I've used Py2Exe before, but that was purely for user convenience and distribution. Ultimately with that in mind I kind of wish I'd gone .NET. PyArmor (they've spelt that wrong) preports to do some level of this for you. Might be worth considering. You could also

Re: best python compiler

2020-08-05 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: best python compiler @9You're really, really not.  That's why I probably come across as frustrated on these threads. URL: https://forum.audiogames.net/post/558654/#p558654 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin

Re: best python compiler

2020-08-05 Thread AudioGames . net Forum — Developers room : Dragonlee via Audiogames-reflector
Re: best python compiler Honestly, what is the real concern here for people about people decompiling their games? So what if they have the source? Noone here is making a living making audio games. This is really just a hobby.Maybe I am missing something, in which I apologize for my

Re: best python compiler

2020-08-05 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: best python compiler @7I mean there's at least 2 ways I know of to deal with this but neither are going to be something they can handle, and their attempts to try to handle this are just going to stop them from doing anything else for an indefinite period. URL: https

Re: best python compiler

2020-08-05 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: best python compiler I am not saying that you are incorrect, I am merely pointing out that his concern is a valid one, if not the most prevalent right now.  I definitely understand where you’re coming from, though. URL: https://forum.audiogames.net/post/558601/#p558601

Re: best python compiler

2020-08-05 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: best python compiler So? Having not released software that's closed source is worth less than having released software that got stolen or cracked or whatever.  I wish people would get this.  Antipiracy/antitheft is a game for people who aren't still learning. URL: https

Re: best python compiler

2020-08-05 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: best python compiler If he releases a game on here, or any kind of software that is built with python, people will try and get at it just to say that they have it.  I don’t know why, few of them would have the necessary knowledge to do anything with it, but that is the sad truth. URL

Re: best python compiler

2020-08-05 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector
Re: best python compiler Compile parts of the app with cython. Or learn to build Python from source and shuffle the bytecodes.I strongly suggest you worry about this when you're actually at the point of being able to release something. At your level of experience, no one cares about

Re: best python compiler

2020-08-05 Thread AudioGames . net Forum — Developers room : bhanuponguru via Audiogames-reflector
Re: best python compiler but i wan't to keep my software closed source. pyinstaller is easy to decompile. so is there any secured compilers? URL: https://forum.audiogames.net/post/558550/#p558550 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https

Re: best python compiler

2020-08-05 Thread AudioGames . net Forum — Developers room : chrisnorman7 via Audiogames-reflector
Re: best python compiler HiI personally use Pyinstaller.It can do a single file (which I wouldn't recommend), or a folder.Just be aware that it doesn't do things like sounds without you telling it to. Check pyinstaller -h for details.FYI, you can't use a single file if you're including

best python compiler

2020-08-05 Thread AudioGames . net Forum — Developers room : bhanuponguru via Audiogames-reflector
best python compiler hey all, as for the title describe's what is the best python to exe compiler. with onefile.?thankyou URL: https://forum.audiogames.net/post/558456/#p558456 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin