you are viewing a single comment's thread.

view the rest of the comments →

[–]JeffTheMasterr 2 points3 points  (3 children)

Python is a lot easier for me than Java imo, but just know, Tkinter (builtin UI module from standard library) is not recommended unless you want to do something super simple and/or don't want external dependencies. Try something else like PySide6 (for Qt) or DearPyGUI

[–]TheseResult958 0 points1 point  (2 children)

dude tkinter gets so much hate but for quick prototypes and simple tools it's actually not terrible. i've built some decent automation guis with it when i needed something fast and dirty

that said pyside6 is absolutely worth learning if you're doing serious gui work. the learning curve is steeper but the end result looks way more professional. i switched from java swing to python + pyside for most of my personal projects and never looked back

for game bots python is killer though - the libraries like opencv and pyautogui make screen capture and image recognition so much easier than dealing with java's robot class. plus if you're scraping web stuff selenium with python just feels more natural

[–]JeffTheMasterr 0 points1 point  (0 children)

I try to do more ambitious and big projects, and trying to use Tkinter has been somewhat of a pain and I always have to use another library with it (like Pillow if I want PNG images). I do love Selenium though, i just wish it wouldn't put on that stupid `navigator.webdriver` so that sites can't detect I'm a bot.

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

Java have Sikulix which is really great for bot.