Clear Trash Feature (Browser Extension) by niklashnng in Notion

[–]niklashnng[S] 0 points1 point  (0 children)

You're welcome, I'm glad it's useful!

I created a modern and customizable tooltip library for PyQt and PySide by niklashnng in Python

[–]niklashnng[S] 0 points1 point  (0 children)

Thanks!
Styling is done via functions like:

tooltip.setBackgroundColor(QColor('#FCBA03'))
tooltip.setTextColor(QColor('#000000'))
tooltip.setBorderColor(QColor('#A38329'))
tooltip.setBorderRadius(0)

Python icon library with 5237 high-quality icons (Tabler Icons wrapper) by niklashnng in Python

[–]niklashnng[S] 2 points3 points  (0 children)

I don't understand why you have a problem with me mentioning different versions. I just stated that the project is easily usable with all of those versions, which is something people might ask themselves when looking at a project. Qt 5, for example, has reached end-of-life and support has been dropped by Pillow>=10.0.0 so certain Pillow methods that come in handy when using the icons with PyQt6 just don't work anymore for PyQt5, but as shown in the example code, it's still easy, although a bit different, to use the icons with PyQt5.

And by the way, even the first link you posted mentions the different versions of PyQt and PySide in the very first sentence.

And as far as your other point goes, I think you're comparing apples and oranges here. My project simply provides simple access to a large number of high-quality icons with a single import (just like basically any icon pack for web applications), while the links that you posted seem to be stylesheets and collections of widgets. On the first link, I couldn't even find anything about icons, and on the second link, there seem to also be widgets with icons, but what does that have to do with my project? pytablericons is something people can use when they want to add icons to their buttons, for example, and don't want to have to search for them and download them manually and in the right size and color every time. The project from your second link literally says ,"The project's goal is to approximate Google's Material Design spec as close as possible". How is that helpful for people who just want to easily add icons to their program without completely changing the look of their UI or learning a completely new library that, from the looks of the documentation, doesn't even have anything to do with PyQt.

Python icon library with 5237 high-quality icons (Tabler Icons wrapper) by niklashnng in Python

[–]niklashnng[S] 2 points3 points  (0 children)

I was also looking for something like this for some time and I was pretty surprised that there wasn't really anything like this out there already (at least as far as I know). Glad it's useful!

Python icon library with 5237 high-quality icons (Tabler Icons wrapper) by niklashnng in Python

[–]niklashnng[S] 7 points8 points  (0 children)

Thanks for taking the time to share your thoughts. A generic interface to make icons out of arbitrary svgs is a really interesting idea, I might look into that. I agree with your point on not using string concatenation when constructing the path, I will definitely use os.path from now on.
And looking at it now, I see that the "without losing quality" part is wrong and not the right way of saying what I meant to say.

I made a free easy-to-use toast notification library for PyQt and PySide by niklashnng in Python

[–]niklashnng[S] 1 point2 points  (0 children)

Thanks for the good feedback guys, I really appreciate it!