Python tutorials with source code, examples, guides, and tips and tricks for Windows and Linux development.
Showing posts with label video. Show all posts
Showing posts with label video. Show all posts
Friday, June 26, 2026
Wednesday, May 6, 2026
Python 3.13.0 : another tool with PyQt6 to build an NPC database.
... another tool for game development, see more on my youtube channel.
Posted by
Cătălin George Feștilă
Labels:
2026,
demo,
module,
modules,
packages,
programming,
python,
python modules,
python packages,
python3,
tutorial,
tutorials,
video,
youtube
Sunday, December 29, 2024
News : My GAME ENGINE is FINALLY DONE! (9 Years in the Making) - build with python.
... this is the cave engine project manager and if you don't know cave cave is a 3D easy to use ... python game engine for you to make games for computer Windows or Linux ... from GuilhermeTeres !
Posted by
Cătălin George Feștilă
Labels:
2024,
2024 news,
game engine,
linux,
news,
video,
windows,
youtube
Saturday, July 17, 2021
Python Qt6 : Install and use python with Visual Studio.
Visual Studio is a very good tool for python programming language development.
Today I will show you how to use it with Visual Studio on a Windows operating system.
If you don't have Python install then start the Visual Studio installer and from all presents select the Python development workload.
Start Visual Studio and open a folder or open an empty file and save with the python language-specific extension: py.
Select the Python environment and add the new package with pip tool.
This is the python script I used to test:
import sys
from PyQt6.QtWidgets import QApplication, QWidget
def main():
app = QApplication(sys.argv)
w = QWidget()
w.resize(250, 200)
w.move(300, 300)
w.setWindowTitle('Simple')
w.show()
sys.exit(app.exec())
if __name__ == '__main__':
main()
You can see the video tutorial about how you can use it:
Posted by
Cătălin George Feștilă
Labels:
2021,
PyQt6,
python,
python 3,
tutorial,
tutorials,
video,
video tutorial,
Visual Studio,
windows
Subscribe to:
Posts (Atom)