PyQt vs Kivy
-
Hello, I want to ask, why PyQt memory management is better than Kivy memory management?
Please tell me the reason
-
Don't know what "Kvy" is (no link provided).
If you want to ask details about PyQt (memory management) it is written by the Riverbank folks who have a mailing list for questions. -
Don't know what "Kvy" is (no link provided).
If you want to ask details about PyQt (memory management) it is written by the Riverbank folks who have a mailing list for questions.@JonB I mean Python Kivy (https://kivy.org/)
-
Don't know what "Kvy" is (no link provided).
If you want to ask details about PyQt (memory management) it is written by the Riverbank folks who have a mailing list for questions.@JonB Is it because PyQt is built on top of Qt which is mostly written in C++, giving it the advantage of stronger memory management and is nice because C++ gives more control over direct memory allocation, whereas Kivy just relies on Python with automatic memory management?
Can anyone help me explain why PyQt's memory handling is better than Python Kivy?
-
@JonB Is it because PyQt is built on top of Qt which is mostly written in C++, giving it the advantage of stronger memory management and is nice because C++ gives more control over direct memory allocation, whereas Kivy just relies on Python with automatic memory management?
Can anyone help me explain why PyQt's memory handling is better than Python Kivy?
@usmansyach said in PyQt vs Kivy:
Can anyone help me explain why PyQt's memory handling is better than Python Kivy?
Probably not, because this is Qt forum, not Kivy.
We don't even know in what way PyQt memory management is "better" than the one from Kivy? Do PyQt applications consume less memory than comparable Kivy applications? "Automatic" memory management (garbage collector) does not necessarily mean that the application consumes more memory compared to manual memory management.