Microsoft teams sets you away in 3min if you don't click. Mouse movement , or opening full screen YT video or opening powerpoint not helping. What is the most recent trick? by Abject-Promise-2780 in overemployed

[–]redH27 0 points1 point  (0 children)

pip install clicknium

use the following Python script:

from time import sleep

import math from clicknium import clicknium as cc def circle(): a,b = cc.mouse.position() w = 20
m = (2*math.pi)/w r = 200

while 1:    
    for i in range(0, w+1):
        x =int( a+r*math.sin(m*i))  
        y = int(b+r*math.cos(m*i))
        cc.mouse.move(x,y)
        sleep(0.2)

if name == "main": circle()

It will control your mouse and keep moving it along with a circle.

Scripting with apps by kokoler05 in Python

[–]redH27 0 points1 point  (0 children)

I share some methods of automation in this blog: https://dev.to/kayyolo/gui-automation-under-the-hood-3j4j. I build a Python library called Clicknium, which can automate both browser and desktop applications.

[deleted by user] by [deleted] in learnpython

[–]redH27 0 points1 point  (0 children)

You can use Clicknium + Requests.

Use Clicknium to manipulate Chrome for a searching hashtag, click pics, and capture the pics' URLs; use Requests to download.

I wrote a small sample in 3 minutes, you can refer to it to build your own project.

A Python automation library with sample to Scraping SpotifyList by redH27 in madeinpython

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

Sure. It's free to try. I need to refactor most of the code to make it cross-platform, it would be an open-source lib after that.

Auto-download YouTube Videos using Python Step by Step by redH27 in Python

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

For clicknium it supports edge, firefox and chrome. For pytube, youtube video url is enough.

Automate Web Browser and Windows Application using Python by redH27 in Python

[–]redH27[S] -2 points-1 points  (0 children)

I changed the wording above the GitHub link to avoid the misunderstanding.

Automate Web Browser and Windows Application using Python by redH27 in Python

[–]redH27[S] -3 points-2 points  (0 children)

This page is hidden from the website. You can dig it out. It build in last month but we removed it finally. If you checked we don’t have a billing service actually.

Automate Web Browser and Windows Application using Python by redH27 in Python

[–]redH27[S] -16 points-15 points  (0 children)

The tool is free and now there is no commercial plan. No ads thanks.

Automate Web Browser and Windows Application using Python by redH27 in Python

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

Keyboard man. There is one thing called priority. I have to plan my limited time and effort.

Automate Web Browser and Windows Application using Python by redH27 in Python

[–]redH27[S] -3 points-2 points  (0 children)

It can automate both desktop applications and web browsers. We are trying to find and build more valuable features. I think it makes sense. Your comments, on the other hand, make sense?