I have tried following other guides and tutorials but not a single one has been able to actually explain things in such a way that is easy to understand! THANK YOU SO MUCH
4:05 if you want to see the mouse position " in real time" you can create a loop , something like this will show the mouse position every half a second. import pyautogui import time import threading def refreshmouse(): threading.Timer(0.5, refreshmouse).start() print(pyautogui.position())
or use this, will show the mouse position in the console and also the RGB values of the current mouse position , lets say the mouse its over a picture it will show you the RGB value of the color of the picture. pyautogui.displayMousePosition()
Thanks for the info and easy breakdown! I recently learned about this neat little trick and figured I would share it with everyone watching this video as it relates to your "print(pyautogui.position())" bit: A super-cool way to get this info real-time without having to run this line over and over and over again is to: 1) Open CMD prompt 2) Type 'python' 3) Type 'import pyautogui' 4) Type 'pyautogui.displayMousePosition()' 5) Keep CMD open to view real-time X, Y coordinates of the cursor position as well as the RGB values! 6) Type 'Ctrl-C' to quit Found this in another video and it really helped me save a lot of time finding mouse coordinates. Thank you again for the video! Keep doing awesome stuff like this. :)
Are you kidding me? Are you for real? You are a born teacher. You explained so beautifully. I dont have words to express myself. Thank you so much for this simple explanation. The only thing I am not happy with is you did not explain how to take cropped screenshots and how to locate on screen functions. I hope you do a tutorial on it soon. Love you.
Thank you so much for such an amazing video with actual project. Funny thing is I used ur automated liking project to like ur tiktok videos and it worked perfectly and was so satisfying to see. Keep making more project videos.
Dear madam,I was trying to use LocateOnScreen function in pyautogui and it worked at the begining.But now even if i loop the process to find the picture,the computer does not find it.Can you help me to fix this?
How to make a simple PYTHON code or even .batch command file to automatically zip an entire folder into a .rar file and the next folder too? Is it possible to create such code?
Nice beginner-friendly tutorial. Any plans to touch more intermediate topics? Regarding screenshot? Is it possible to command what size and area of the screen to take a screenshot?
Is there a way to assign a random variable to the delays in pyautogui? I'd like a move mouse to a location and then sometime between 10 seconds and 60 seconds later, click. Every loop would need to re-randomize that variable. I hope that makes sense.
Thank you. Can you show us; A code that will record the movements and clicks of my mouse with a key combination we assign, stop our movements with another key combination, and replay the recorded movements with another key combinationplease.
python can drawing. for me it is amazing. i wonder, if i have a list of points, line, curve or even spline (as csv which is comming from dxf extraction), can pytautogui re-draw it? what could be the limitation (of pyautogui). great channel
Thank You for the tutorial. I followed the install Anaconda and install PYCHARM video. I went to command and did the pip install in command and it installed PYAUTOGUI. I tested it while still in command, I did PY (enter), import pyautogui (enter). I did both the Print(pyautogui.position()) and received the mouse position and Print(pyautogui.size()) and received back the screen size. The problem is in PYCharm when I do the import pyautogui it gives me the error, that it is not finding the package for pyautogui. I click install and it fails. Do you have a different interpreter besides python 3.11 that has the pyautogui package available?
PyCharm Pro version won't import pyautogui module. why? using windows 11 home edition. no powershell installed. but it does work on python3 command line to import pyautogui. please do video on your "configuration and setup" of PyCharm. If I am using the same software you are using makes it easier to replicate what you are doing therefore increasing comprehension.
Is there a way to make a script that can actually record the movement of the mouce and clicks that it makes, instead of telling python when to move, where to move and when to click.
autopygui to automate functions keys ? in short, i work in insurance and we have to enter certain things repetitively and i want to create a loop that stays until CTRL C but also has "function keys" or self-created function keys to automate keystrokes and data entry to the computer screen. Note: i have 3 monitors and can't find anything in python that supports 3 monitors. suggestions
Nice tutorial. Could you tell me how to invert the y-axis of the mousemovement? I would really love this feature because I need to toggle it in some games which lacks that feature. It would really help because I have searched everywhere and tried loads of code for it but since I am not that good of a programmer I ask for some pointers or advice. Thanks!
I suppose you put the code in a function and bind different hotkeys to call different functions. How do you bind the hotkey? In Autohotkey, it's a build-in IfWinActive/IfWinExist function to check if you're running certain program (like running a game), is that exist in pyautogui too? and how to do that?
Such an amazing tutorial - projects were so fun! Thank you! Just donated to your Ko-Fi for all your hard work❤️
Thank you so much, that’s so kind of you! 💛
Yes, excellent tutorial, especially for a novice like myself. Plus she's cute 🤩
Thank you. Please make a video about how to click in another Windows please
@@CodeoftheFuture im done, it says "modulenotfohnderror" but ive downloaded pyautogui several times with pip.... its on python v3.10.7 if ur wondering
@@Ryan78900Yup, a brainy fitty into coding is welcome rarity 😊
I started 24 hours ago watching videos about Python, just stopped to sleep, and now I'm here. I can't believe I didn't start programming earlier.
Did you keep learning python? I'm curious to know where you at now
Now where are you two years later
@@DataSet he is at his home. Sleeping!
@@UmesHKumaR-zj2mp I saw him the other day in a Walgreens picking up some cough drops
Thanks Ellie! ❤️
Note: Don't skip Ads to help her
Thank you so much!!
I have tried following other guides and tutorials but not a single one has been able to actually explain things in such a way that is easy to understand! THANK YOU SO MUCH
Thank you so much for your lovely comment! ☺️
I love how well this whole video is put together. You also have good communication skills. You speak clearly which kept me engaged throughout.
4:05 if you want to see the mouse position " in real time" you can create a loop , something like this will show the mouse position every half a second.
import pyautogui
import time
import threading
def refreshmouse():
threading.Timer(0.5, refreshmouse).start()
print(pyautogui.position())
refreshmouse()
or use this, will show the mouse position in the console and also the RGB values of the current mouse position , lets say the mouse its over a picture it will show you the RGB value of the color of the picture.
pyautogui.displayMousePosition()
directly in a terminal you can use:
while true; do clear; xdotool getmouselocation; sleep 0.1; done
Underrated channel. Gave me ideas for a bot i wanted to write.
If anybody wants to learn and understanding about coding then you are at perfect channel
Thanks for the info and easy breakdown! I recently learned about this neat little trick and figured I would share it with everyone watching this video as it relates to your "print(pyautogui.position())" bit:
A super-cool way to get this info real-time without having to run this line over and over and over again is to:
1) Open CMD prompt
2) Type 'python'
3) Type 'import pyautogui'
4) Type 'pyautogui.displayMousePosition()'
5) Keep CMD open to view real-time X, Y coordinates of the cursor position as well as the RGB values!
6) Type 'Ctrl-C' to quit
Found this in another video and it really helped me save a lot of time finding mouse coordinates. Thank you again for the video! Keep doing awesome stuff like this.
:)
Awesome, thanks so much for the tip!
I appreciate these tutorials so much! I am feeling more confident every day.
I like this video with pyautogui module. Thanks for your effort Ellie 😊
Thank you so much!!
It is very interesting to learn with you
Please keep posting videos
Definitely will do!🤩
The lesson was very helpful. Thanks a lot and although I don't know English well, I still understood everything. Thank you again :)
Thank you so much!! That really means a lot☺️
definitely getting a like, well deserved... I think we all know the information you gave wont rly be used for anything ethical xoo
Alright! Magic mouse powers unlocked! Thanks so much for the tutorial.
Your channel is seriously underrated! Great job and thanks
you can use ctrl+d(windows) or cmd+d(mac) to duplicate a line😊
Great class.
Keep up the good work.
Thank You,
Natasha Samuel
Thank you so much! I really appreciate your comment😁
That's a pretty good video, as a french guy I understood all and I don't even thought that you were talking in english lol
this is probably the most intresting module i would ever learn
This was a great tutorial, thank you. Seriously, this jump started my coding career.
Awesome tutorial for beginners. I would like to mention that using the os lib helps a lot with navigating to other pages
Amazing way , I'm newbie in programming but now after watched your video I'm able to do a lot of things through Python.
Thank you very Much
U made it simple man ur subscribers are well deserved
I fucking love you mate!! I saw a lot of videos for soft but tNice tutorials one is handsdown the best one! Love how your super calm and really take
This is a really good tutorial. Good job. I really needed this.
What a great tutorial! Keep it up please! We need people like you teaching us plebs.
Are you kidding me? Are you for real? You are a born teacher. You explained so beautifully. I dont have words to express myself. Thank you so much for this simple explanation. The only thing I am not happy with is you did not explain how to take cropped screenshots and how to locate on screen functions. I hope you do a tutorial on it soon. Love you.
actually it was very useful for mee
waiting for more turials like this
very good and well done
What a wonderful tutorial. Much respect, madam. Subscribed.
Just trying to learn python and found this library. Thanks for the breakdown, im going to be sully now and automate weird things because i can.
Frrrrr tNice tutorials man just straight forward !
Also, if you are botting, its not a bad idea to sprinkle some randomness in the wait times, move locations and move durations.
Let me add my voice to the group of people who believe you should make an udemy course. I'm just jn minute 12 and my goodness this is brilliant stuff
Even though it was a lot, its exactly what i was looking for with such great brief explanations. Thanks bruv
Thank you for your guide) Keep helping people to learn interesting modules
Thank you so much for such an amazing video with actual project. Funny thing is I used ur automated liking project to like ur tiktok videos and it worked perfectly and was so satisfying to see. Keep making more project videos.
Fantastic, very informative and valuable, thanks a lot dear
pyautogui seems to be your favorite python module.
This was actually incredible
thanks for your time and for this awesome beginner tutorial!
A very useful lesson for all aspiring softians
Wow very amazing tutorial. BTW your specs is very nice. which specs do you have?
Great tutorial. Expecting more from you. 😊
Awesome project mam 😎 thanks for sharing.
Very good tutorial, thank you!
Great job! Your videos are super cool!
i love this course, big thanks : )
Thank u so much.......your accent makes it even better
Love your stuff! Big help!
I'm gonna try project 2 on your TikTok😌
This is awesome 🤩🤩🤩
Really helpful, even for professionals
What an amazing and interesting tutorial!!! Thank you very much.
Great example. For interacting with web, I believe selenium is the better option.
Thank you ❤👍 Watched the full video
Awesome tutorial, thanks a lot!
THIS AMAZING this video is basically teaching how to be a hacker
Muchas gracias ☺, eres lo máximo! Dios te bendiga 🙌
I love ur courses
Good artical, thanks for sharing.
thank s for your time actually, i wrote that comment using what I've just learned
Amazing tutorials! :D
Beautiful and smart🎉❤
Great tutorial! I would pronounce GIU as "gooey"
Dear madam,I was trying to use LocateOnScreen function in pyautogui and it worked at the begining.But now even if i loop the process to find the picture,the computer does not find it.Can you help me to fix this?
Your course amazing 👏🏽
How to make a simple PYTHON code or even .batch command file to automatically zip an entire folder into a .rar file and the next folder too? Is it possible to create such code?
This was so helpful and well explained
Nice beginner-friendly tutorial. Any plans to touch more intermediate topics?
Regarding screenshot? Is it possible to command what size and area of the screen to take a screenshot?
Your lesson so understandable. Thanks. It was useful for me..💛💚💙
Thx, can u do some video about "How u can control PC with u Voice?" Like press keys with voice comand and many many...
instead of delaying the time to get the position, you could also just press ctrl s and then f5 to run
omg this is so much useful ....great video
Thank you so much!
Is there a way to assign a random variable to the delays in pyautogui? I'd like a move mouse to a location and then sometime between 10 seconds and 60 seconds later, click. Every loop would need to re-randomize that variable. I hope that makes sense.
Thanks for teaching me ❤️
Very nice tutorial
Thank you. Can you show us;
A code that will record the movements and clicks of my mouse with a key combination we assign, stop our movements with another key combination, and replay the recorded movements with another key combinationplease.
Nice video and great instructions. How would I be able to get the mouse location on another person's computer without them having to install python?
Boa aula.
muy buen video, sencillo y fácil de entender. Gracias
python can drawing. for me it is amazing. i wonder, if i have a list of points, line, curve or even spline (as csv which is comming from dxf extraction), can pytautogui re-draw it? what could be the limitation (of pyautogui). great channel
Very nice tutorials! They are super easy to follow
Thank u. That was really helpfull
learning python from her is better than wasting yur time on fortnite and pubg
Thank You for the tutorial. I followed the install Anaconda and install PYCHARM video. I went to command and did the pip install in command and it installed PYAUTOGUI. I tested it while still in command, I did PY (enter), import pyautogui (enter). I did both the Print(pyautogui.position()) and received the mouse position and Print(pyautogui.size()) and received back the screen size.
The problem is in PYCharm when I do the import pyautogui it gives me the error, that it is not finding the package for pyautogui. I click install and it fails. Do you have a different interpreter besides python 3.11 that has the pyautogui package available?
Thank you for creating tNice tutorials playlist in soft soft, just starting out in soft production and there is so much to learn
Thanks, very helpful.
ive been making complete verses on a single soft, it seems everyone of these tutorials i find like to put a single instrunt on each
How can I control an application on my mobile device where you open any application
PyCharm Pro version won't import pyautogui module. why? using windows 11 home edition. no powershell installed. but it does work on python3 command line to import pyautogui. please do video on your "configuration and setup" of PyCharm. If I am using the same software you are using makes it easier to replicate what you are doing therefore increasing comprehension.
I get this error: "AttributeError: module 'collections' has no attribute 'Sequence'" trying the moveTo command. How can i solve it?
awesome tutorial
Is there a way to make a script that can actually record the movement of the mouce and clicks that it makes, instead of telling python when to move, where to move and when to click.
autopygui to automate functions keys ? in short, i work in insurance and we have to enter certain things repetitively and i want to create a loop that stays until CTRL C but also has "function keys" or self-created function keys to automate keystrokes and data entry to the computer screen. Note: i have 3 monitors and can't find anything in python that supports 3 monitors. suggestions
Nice tutorial. Could you tell me how to invert the y-axis of the mousemovement? I would really love this feature because I need to toggle it in some games which lacks that feature. It would really help because I have searched everywhere and tried loads of code for it but since I am not that good of a programmer I ask for some pointers or advice. Thanks!
Cheater!
thanks. very easy to understand. :D
Hi. You know how to stop charset error? Because I type something other region language. It is invisible and getting error
I suppose you put the code in a function and bind different hotkeys to call different functions. How do you bind the hotkey?
In Autohotkey, it's a build-in IfWinActive/IfWinExist function to check if you're running certain program (like running a game), is that exist in pyautogui too? and how to do that?
Interesting. Is it possible to invoke control elements (e.g. buttons) directly, without using mouse clicks or keyboard inputs?