Re: how to create a python application that looks like web application?

2020-09-26 Thread AudioGames . net Forum — Developers room : bhanuponguru via Audiogames-reflector


  


Re: how to create a python application that looks like web application?

@14 i know html,css,js,php. i can prity manage. will try it out thankyou for suggestion

URL: https://forum.audiogames.net/post/574364/#p574364




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: how to create a python application that looks like web application?

2020-09-25 Thread AudioGames . net Forum — Developers room : frastlin via Audiogames-reflector


  


Re: how to create a python application that looks like web application?

Brython is pretty good. You will need to learn HTML, and the basics of _javascript_, but if you don't want to learn ES6 (latest version of _javascript_), then Brython can do a lot. It's also slightly easier to read than _javascript_.Another thing you can do, if you really want, is investigate the web assembly versions of python:https://stackoverflow.com/questions/447 … ebassemblybut if you're a newbie, then Brython is what you want.To learn _javascript_, do the tutorials at Free Code Camp:https://www.freecodecamp.org/

URL: https://forum.audiogames.net/post/574266/#p574266




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: how to create a python application that looks like web application?

2020-09-19 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector


  


Re: how to create a python application that looks like web application?

Eel might be good-ish but again: you're going to have to learn HTML and JS anyway and I'm skeptical that anything that needs localhost is going to run everywhere.

URL: https://forum.audiogames.net/post/572252/#p572252




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: how to create a python application that looks like web application?

2020-09-19 Thread AudioGames . net Forum — Developers room : Ty via Audiogames-reflector


  


Re: how to create a python application that looks like web application?

Hmm, I haven't loked at this much, but it looks like it would be helpful

URL: https://forum.audiogames.net/post/572251/#p572251




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: how to create a python application that looks like web application?

2020-09-18 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector


  


Re: how to create a python application that looks like web application?

You can't do a Flask/Django server on localhost that you talk to via a JS app and expect it to work reliably because of firewalls.If you want the web app but installable thing, that's Electron.  You can get started with node pretty easily, but you're not going to be able to do this from Python without spending a ton of extra effort.  Not how you'd define effort as someone who's still learning, how I'd define effort as someone who's been doing this stuff for going on 10 years.  You can get little things to work, kind of, but you still end up writing half the app in JS and might as well give up and do the whole thing that way.

URL: https://forum.audiogames.net/post/571860/#p571860




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: how to create a python application that looks like web application?

2020-09-18 Thread AudioGames . net Forum — Developers room : Lucas1853 via Audiogames-reflector


  


Re: how to create a python application that looks like web application?

I imagine you could probably run a flask (or Jango or whatever I guess) server on a port and maybe write a JS bridge that forwards everything on to that and compile that as an electron app, but I haven't considered all the ramifications of that and is it even worth it to you? I guess you'd be getting rid of most of the work with Node, but your frontend would still need to be jS...

URL: https://forum.audiogames.net/post/571831/#p571831




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: how to create a python application that looks like web application?

2020-09-18 Thread AudioGames . net Forum — Developers room : ashleygrobler04 via Audiogames-reflector


  


Re: how to create a python application that looks like web application?

idk, you can also use wx to make headings and links if i am not mistaken... but you won't be able to use browse mode and so on i think...

URL: https://forum.audiogames.net/post/571824/#p571824




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: how to create a python application that looks like web application?

2020-09-18 Thread AudioGames . net Forum — Developers room : Simter via Audiogames-reflector


  


Re: how to create a python application that looks like web application?

You can try using the eel module to build a bridge between js and python.

URL: https://forum.audiogames.net/post/571816/#p571816




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: how to create a python application that looks like web application?

2020-09-18 Thread AudioGames . net Forum — Developers room : ogomez92 via Audiogames-reflector


  


Re: how to create a python application that looks like web application?

Yeah Python is great for data manipulation and data science and such but it's pretty bad for things like web apps, it's like asking a bike to act as a van or something.

URL: https://forum.audiogames.net/post/571813/#p571813




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: how to create a python application that looks like web application?

2020-09-18 Thread AudioGames . net Forum — Developers room : ogomez92 via Audiogames-reflector


  


Re: how to create a python application that looks like web application?

Yeah Python is great for data manipulation and data science and such but it's pretty bad for things like web apps, it's like getting a bike to transform into a van or something

URL: https://forum.audiogames.net/post/571813/#p571813




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: how to create a python application that looks like web application?

2020-09-18 Thread AudioGames . net Forum — Developers room : bhanuponguru via Audiogames-reflector


  


Re: how to create a python application that looks like web application?

@5 np. i will

URL: https://forum.audiogames.net/post/571801/#p571801




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: how to create a python application that looks like web application?

2020-09-18 Thread AudioGames . net Forum — Developers room : Dragonlee via Audiogames-reflector


  


Re: how to create a python application that looks like web application?

VS code runs on Electron written using js/typescript. Electron apps are typically written using js and related dialects like typescript, flow, etc.It is possible to have large parts of the electron app be written in python. just google python and electron and you will find it.but honestly, you might as well just program an electron app purely with js or languages that compile to js, since even if you want to combine python and electron, you will still need to write a bunch of js glue.

URL: https://forum.audiogames.net/post/571799/#p571799




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: how to create a python application that looks like web application?

2020-09-18 Thread AudioGames . net Forum — Developers room : Draq via Audiogames-reflector


  


Re: how to create a python application that looks like web application?

I don't know how doable this is in Python, but this is exactly what Electron is for. As long as you don't mind the program running in its own browser window that hogs resources for no good reason...

URL: https://forum.audiogames.net/post/571792/#p571792




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: how to create a python application that looks like web application?

2020-09-18 Thread AudioGames . net Forum — Developers room : bhanuponguru via Audiogames-reflector


  


Re: how to create a python application that looks like web application?

yes i know js, html css 3langs. but we cana run it on our browser. how to make a stand alone application for them? is it posible in python?

URL: https://forum.audiogames.net/post/571782/#p571782




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: how to create a python application that looks like web application?

2020-09-18 Thread AudioGames . net Forum — Developers room : magurp244 via Audiogames-reflector


  


Re: how to create a python application that looks like web application?

Your probably looking for [django], which is generally used for python web apps.

URL: https://forum.audiogames.net/post/571779/#p571779




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: how to create a python application that looks like web application?

2020-09-18 Thread AudioGames . net Forum — Developers room : NicklasMCHD via Audiogames-reflector


  


Re: how to create a python application that looks like web application?

See.What I have learned over the years, is to not use tools/languages for what they weren't intended for.Short answer, it is doable, but you will have a much easier time switching to something like JS, since  no matter what you do, either you, or the module you end up using, will need to transform something into some form of web technology, like html css and js.

URL: https://forum.audiogames.net/post/571776/#p571776




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


how to create a python application that looks like web application?

2020-09-18 Thread AudioGames . net Forum — Developers room : bhanuponguru via Audiogames-reflector


  


how to create a python application that looks like web application?

hey friends, i searched a lot on google. but it shows flask jango which i know. but those are one which is used to host your website. that means we can make our own hosting server. but what i need is, if you have used vs code, it's gui looks like web document. brows mode and focus mode etc etc. i wana create it in python. are there any good modules?

URL: https://forum.audiogames.net/post/571773/#p571773




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


how to create a python application that looks like web application?

2020-09-18 Thread AudioGames . net Forum — Developers room : bhanuponguru via Audiogames-reflector


  


how to create a python application that looks like web application?

hey friends, i searched a lot on google. but it shows flask jango which i know. but those are one thich is used to host your website. that means we can make our own hosting server. but what i need is, if you have used vs code, it's gui looks like web document. brows mode and focus mode etc etc. i wana create it in python. are there any good modules?

URL: https://forum.audiogames.net/post/571773/#p571773




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector