Home > Back-end >  What module/library was used to program Youtube's GUI?
What module/library was used to program Youtube's GUI?

Time:12-10

I starting looking into more aesthetically pleasing alternatives to Tkinker, and wondered what modules/libraries were used to program Youtube, Discord, and some of the other well known social apps that are written in Python. Any ideas?

CodePudding user response:

Discord uses web technologies (html, css, javascript) with react.js, see this blog post. Then they use electron to pack it into a desktop application.

  • Related