Python Forum
Can this type of project be created with Python ?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Can this type of project be created with Python ?
#1
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 !
Reply
#2
What do you want to automate?
"As they say in Mexico 'dosvidaniya'. That makes two vidaniyas."
https://freedns.afraid.org
Reply
#3
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.
Reply
#4
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 !
Reply
#5
You can do it.
"As they say in Mexico 'dosvidaniya'. That makes two vidaniyas."
https://freedns.afraid.org
Reply
#6
But it is a lot of work.
Reply
#7
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)
Reply
#8
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 :)
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  code to read files in folders and transfer the file name, type, date created to excel Divya577 0 1,835 Dec-06-2020, 04:14 PM
Last Post: Divya577
  Type hinting - return type based on parameter micseydel 2 2,428 Jan-14-2020, 01:20 AM
Last Post: micseydel
  Find all “*.wav” files that created yesterday on linux host with python. pydeev 6 4,705 Jan-07-2020, 06:43 AM
Last Post: pydeev
  Opening txt file created in python in excel fabipc 1 2,514 Aug-05-2018, 11:59 PM
Last Post: ichabod801

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020