Welcome developers
I learned the basics of Python, I want to do a project purpose task automation
Can this type of project be created with Python ?
Are there any lessons or libraries to help?
Thanks for your attention !
What do you want to automate?
My guesstimation is that there's 90%+ chances that what you want to do can be done with Python.
But, as wavic said, the more detailed answer you would like to get, more detailed information we will need on what you want to do.
Task automation for windows and Linux
for exemple importing RSS of specific websites , Empty recycle bin weekly
sending an email contant system informations monthly
a lot of ideas in automation ...
(Jan-07-2018, 01:19 PM)j.crater Wrote: [ -> ]My guesstimation is that there's 90%+ chances that what you want to do can be done with Python. But, as wavic said, the more detailed answer you would like to get, more detailed information we will need on what you want to do.
I still don't know what's are possibilities of Python, if the automation of system tasks can be as possibility ? and what is her other possibilities
Thanks ALL for your attention !
This can give some you ideas.
Automate the Boring Stuff with Python is now free online.
(Jan-07-2018, 01:20 PM)AbdallahBeraidaPro Wrote: [ -> ]Empty recycle bin weekly
Can make a example.
From command line install,these are
Python job scheduling for humans and
winshell
pip install schedule
pip install winshell
import schedule
import time
import winshell
def empty_recycle_bin():
winshell.recycle_bin().empty(confirm=False, show_progress=False, sound=False)
# Test run delete every 10 sec
schedule.every(.1).minutes.do(empty_recycle_bin)
# Once a week
#schedule.every().sundat.at("02:15").do(empty_recycle_bin)
while True:
schedule.run_pending()
time.sleep(1)
good !
I Am generally interested in automation, so I can create something like "terminal" in windows, that content mini-scripts of automating tasks
Thanks ALL for your attention ! I will read "Automate the Boring Stuff with Python" and go on for creating this tool :)