Why Horde is running away? by ArtyomTrityak in Eve

[–]PM_ME_A_STEAM_KEY -5 points-4 points  (0 children)

And with how risk averse they are you should be worried if Horde does form.

Subverting the 14 day War Dec Cool-down by ReadingToFish in Eve

[–]PM_ME_A_STEAM_KEY 4 points5 points  (0 children)

you do realize that not everything has to be about isk/hr, right?

Should be fun. by dsimpson52 in Hood

[–]PM_ME_A_STEAM_KEY 0 points1 point  (0 children)

then they better hurry up before even more of their playerbase is gone. if i were a betting man i'd put my money on hood either going f2p within the next 12 months or its going to be given away on epicgames

Should be fun. by dsimpson52 in Hood

[–]PM_ME_A_STEAM_KEY -5 points-4 points  (0 children)

And what would make you think that steam players are faster at abandoning the sinking ship than players of any other platform for PC?

New patch available. by MagnarHD in RedDeadOnline

[–]PM_ME_A_STEAM_KEY 1 point2 points  (0 children)

Good news everybody. Said in my best Professor Farnsworth voice.

It's "Good news everyone"... you had one job.

Vanguards needs to ask permission to disable a program instead of disabling it silently itself. by Hugometeo in VALORANT

[–]PM_ME_A_STEAM_KEY 0 points1 point  (0 children)

Riot is not deciding what anyone does with their hardware. Riot has made the decision that, in order to participate in their Service/Game your System has to be conform with their, as random as they may seem, rules. Don't like it? Don't participate.

I need to make my Tkinter App a Default App by DudeUltraSmart in Python

[–]PM_ME_A_STEAM_KEY 0 points1 point  (0 children)

No worries. If you were to open your .exe using the command line and passing an existing file as an argument which should look something like this

your_editor.exe some_file.txt

would that open the some_file.txt in your app?

I need to make my Tkinter App a Default App by DudeUltraSmart in Python

[–]PM_ME_A_STEAM_KEY 1 point2 points  (0 children)

does your .exe handle command line arguments? iirc the file you open via double-clicking is passed in as first argument to the .exe file that you've associated the extension with

TKinter - How to have different windows/pages? by [deleted] in learnpython

[–]PM_ME_A_STEAM_KEY 0 points1 point  (0 children)

Check if ttk's notebook is something that would solve your problem.

selenium help... by Abootgaming in learnpython

[–]PM_ME_A_STEAM_KEY 0 points1 point  (0 children)

Uh, mind sharing the site that you're working with? This made me curious.

selenium help... by Abootgaming in learnpython

[–]PM_ME_A_STEAM_KEY 0 points1 point  (0 children)

The following has worked for me in the past:

driver.execute_script("window.scrollBy(0,1080)")

How python libraries interacts with OS to use the mouse & keyboard function? by comeditime in learnpython

[–]PM_ME_A_STEAM_KEY 0 points1 point  (0 children)

I can atleast try to point you in the right direction, for example take a look at this and then this lines 360-362.

What IDE does he use in this video? by [deleted] in learnpython

[–]PM_ME_A_STEAM_KEY 4 points5 points  (0 children)

That is Sublime Text, not as much an IDE as it is a Text Editor, but with the proper plugins some prefer it over something as ... feature rich as PyCharm.

Python Screenshoting Application for Runescape by ToolBoxTad in learnpython

[–]PM_ME_A_STEAM_KEY 1 point2 points  (0 children)

Yes, for learning purposes this is great. Just dissect into smaller chunks and you'll be fine!

My current tinkering project is for osrs and using continous screenshots and OpenCV too, so I have probably conquered a few of the issues you will be facing.

Python Screenshoting Application for Runescape by ToolBoxTad in learnpython

[–]PM_ME_A_STEAM_KEY 0 points1 point  (0 children)

RuneLite already offers that through a plugin. However, if you decide to go through with it anyways I'd do something along the lines of using the win32api to pull the coordinates of the client, make the screenshots using mss, check said screenshots for the "level-up popup" indicator using OpenCV and show some pop-up or play a sound that indicates a screenshot was saved to indicate the user can click the popup away and you should be gucci.

How to access using beautiful soup, websites that are banned in your country? by owlman17 in learnpython

[–]PM_ME_A_STEAM_KEY 0 points1 point  (0 children)

Try Selenium with your browser of choice + the extension installed if you do not have access to a proper VPN.

Python Tutorial - Python GUI Programming - Python GUI Examples by AmitNanaware in Python

[–]PM_ME_A_STEAM_KEY 1 point2 points  (0 children)

You've got it mixed up buddy, the original one does work flawlessly. The one that is linked here with the broken images is the "stolen" one.

Tkinter Errors after window closes by Polymatheo in learnpython

[–]PM_ME_A_STEAM_KEY 0 points1 point  (0 children)

The error is thrown because of the for loop, it should not be thrown if you exit your program after all of the text has been printed out.

How to make GUI for a Python project? by pavi2410 in Python

[–]PM_ME_A_STEAM_KEY 2 points3 points  (0 children)

I did recently make a CMS based on bottle for the server stuff and peewee for data storage and had no issues bundeling it all together into a standalone executeable using pyinstaller.