python linux create gui without window manager and desktop [closed] - python

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
Hello i want to create a gui app that works without a window manager or X server.
like the old graphic applications that were launched in msdos
like this:
i want a gui with buttons, color and print images/icons.
I'm not sure which lib could do this, I was thinking of pysdl2, do you think this is the right option?

You have to write directly to framebuffer yourself instead of letting your X Server and your Window Manager to do the heavy lifting for you. For this there is this Python library: https://pythonhosted.org/fbpy/

Related

Can i toggle sound device properties with a command (in command prompt windows11) [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 10 months ago.
Improve this question
Screenshot of property i am trying to toggle
2nd photo
I would like to toggle the "listen to..." setting in the windows sound
devices settings on this input device using command-prompt/batch/python if possible.
Id like some pointers on how i could go about doing this. Anything will help. Thanks
Im more looking for a way to change the setting in the windows files
through a command
You maybe could write some code that uses keyboard input. With Python it's very easy.
from pynput.keyboard import Key, Controller
keyboard = Controller()
keyboard.press(Key.media_volume_up)
keyboard.release(Key.media_volume_up)
The Documentation with the commands is here:Here
I hope this helps

Building command line window app using python [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I want to build a command line window app using python. It takes input from user , processes it and then gives the output back. Any suggestions where to start like libraries, functions etc?
For a simple command-line interface python program, you shouldn't need any external libraries. You could use the built in print() function to get output to the user, as well as the built in input() function in order to receive input. More information can be found here.

How to create dynamic progress bar with flask? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I wonder if ther is flask extension or snippet that allows dynamic client web page data update (I need it for progress bar alike this one:
yet if there is a general SignalR alike library to create dynamic web application it would solve my problem?
If you would like to simulate Non-Blocking I/O Model similar to SignalR you can have a look at Flask-SocketIO - https://github.com/miguelgrinberg/Flask-SocketIO.

Is there a module for raw graphics for python? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I need a module that is basically the most raw graphics possible
Just a window on the screen which I have random access to his pixels and have some basic events.
Is there anything like this?
I think you are looking for PyOpenGL, which is the Python OpenGL binding. Keep in mind you should use another support library, like Pygame or Tkinter for showing your graphics.

Controlling Music and Video in Python [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I'm trying to write a karaoke program in python. Every karaoke software has basic functionality like seeking in the video as well as modulating the pitch of music by half steps. What are some modules that I can use to permit this functionality?
I'm going to use wxPython to write the gui portion if that makes a difference!
Honestly you might want to take a look at PyGame - it has fairly robust libraries for handling stuff like music and movies: http://www.pygame.org/docs/
wxPython has a built in media controller, wx.MediaCtrl, which can play both audio and video. It has most of the basic functionality built in, like seek, pause, etc. I've found it very easy and reliable.

Categories

Resources