Proxy locations

Europe

North America

South America

Asia

Africa

Oceania

See all locations

Network statusCareers

Back to blog

Automated Web Scraper With Python & Windows Task Scheduler

Augustas Pelakauskas

Augustas Pelakauskas

2022-08-045 min read
Share

To be of recurrent use, a Python web scraping script would have to be automated to run repeatedly and periodically. There are some ways to do this in Python directly, although a more accessible alternative is available. MS Windows has a built-in tool, Windows Task Scheduler, for running applications automatically.

In this article, you’ll learn how to set up Windows Task Scheduler (Task Scheduler) to schedule a Python script automatically and periodically.

If you’re using macOS or Linux, you can use cron instead of Windows Task Scheduler. For more details, see how to automate web scraping with Python and cron.

Guide to running a Windows Task Scheduler Python Script

Before configuring the Task Scheduler, follow these guidelines to prepare your web scraping script and avoid the most common errors.

Preparing a Python script

Here are the three tips to follow when preparing a Python script.

  1. Use a virtual environment to ensure that the correct Python version and all the required libraries are available when you run your Python web scraper.

  2. Use the absolute file paths to ensure that the script doesn’t break due to missing files.

  3. Use loggers to redirect output to a file.

After importing the logging module, you can configure logging with only one line of code: 

import logging
logging.basicConfig(filename="output.log",level=logging.DEBUG)

After this, you can write to the log file as follows:

logging.info("informational message here")

You can read more about logging here.

Python script example

First, install the required libraries:

python -m pip install requests beautifulsoup4 lxml

In this article, the following Python web scraping script will be used:

### price.py
from bs4 import BeautifulSoup
import requests

response = requests.get('https://sandbox.oxylabs.io/products/1')
response.encoding = 'utf-8'

soup = BeautifulSoup(response.text, 'lxml')
price = soup.select_one('div.price').text

with open('data.csv','a') as f:
   f.write(price + '\n')

Every time you run this script, it’ll append the latest product price in a new line to the CSV file.

How to create a batch file to run the Python script

Even though running a Python script without creating a .bat (batch) file is possible, doing so is highly recommended. A batch file will give you better control over running the scraper.

Here is what a typical batch file would look like:

cmd /k "cd /d C:\scraper & venv\Scripts\python.exe price.py"

Note that there are two parts of this command – the first is the command cmd, and the second contains multiple commands. 

Here is a quick explanation of the command:

  • cmd /k – creates a new command-line environment, executes the commands, and then terminates them.

  • cd /d c:\scraper – changes the current directory and drive to the folder where you have placed the Python executable.

  • venv\Scripts\python.exe price.py – runs the Python web scraper.

Now, as you have cd in the directory, you can use the relative file paths. If you were to skip this step, specify the full path of the Python executable and the Python script file.

How to set up Windows Task Scheduler to run a Python script

Once the batch file is ready, locate the Task Scheduler through Windows Search.

Locating Windows Task Scheduler

Locating Windows Task Scheduler

From the right panel of the Task Scheduler, select Create Task.

Create Task (not Basic Task)

Create Task (not Basic Task)

Note that you shouldn’t select Create Basic Task due to limited options.

The Create Task window contains various settings across the General, Triggers, Actions, Conditions, and Settings tabs.

Functionality overview

Functionality overview

The General tab has two settings to check. The first one is the name of the task that you’re creating. Choose a name that helps you remember its purpose.

Run whether user is logged on or not is an essential setting. Select it if you want your web scraper to run even when you are not logged on. Note that if you select this option, you’ll be asked for your password towards the end of the task creation process.

Next, open the Triggers tab. In this tab, click the New button. You’ll see the New Trigger window.

Trigger defines when the scraper runs

For example, you want the web scraper to run every hour. To do so, select Daily in Settings. In the Advanced settings, choose Repeat task every and set 1 hour.

For error handling, select Stop task if it runs longer than and choose a value.

Ensure that Enabled is selected and click OK to save the trigger.

Next, open the Actions tab and click New. You’ll see the New Action window.

Actions define what has to be done

In this window, maintain the action Start a program and specify the full path of the batch script.

As defined previously, the batch file contains only one line:

cmd /k "cd /d C:\scraper & venv\Scripts\python.exe price.py"

Important: If you have spaces in your path, surround the entire path with double quotes.

Alternatively, you can still run a Python script directly if you aren’t using a batch file.

In the Program/script field, specify the complete path of the python.exe file. In the Add arguments textbox, indicate the complete path of the Python script. Once again, make sure that if you have spaces in any of these paths, surround them with double quotes.

Lastly, if you’re using relative paths anywhere in the code, it would be a good idea to set the Start in textbox to the folder where you have the Python script. You can skip the Conditions tab and jump directly to the tab. The suggested settings are highlighted below.

Suggested settings

Suggested settings

All the settings are self-explanatory and optional. You can choose to select the defaults and click OK.

Once you click OK, you’ll be asked for Windows credentials. Enter your username and password and click OK to save the task. The web scraper will be executed during the next scheduled run.

Common reasons why Windows Task Scheduler Python script isn't running

The most common setback is when the Task Scheduler can’t find the python.exe file. To fix this, find the complete path of the Python executable file. Open the Command Prompt and run the following command:

where python

The output of this command will be one or more lines. Each line contains the full path of the Python executable:

C:\scraper>where python
C:\Program Files\Python310\python.exe
C:\Users\codeRECODE\AppData\Local\Microsoft\WindowsApps\python.exe

Take a note of the Python executable that you want to use. Unless you’re using virtual environments, you must specify the complete path of the python.exe file.

Another common reason for failure is when the script path is incorrect. When working with the Task Scheduler, always use absolute paths.

Lastly, surround the path with double quotes, especially when you have spaces in the path or file names.

Other web scraping automation alternatives

Windows Task Scheduler is a tool exclusive to Windows. If you use macOS or Linux, the Cron tool is the most prominent alternative.

Cron doesn’t have a user interface, but it’s capable of doing almost everything that the Task Scheduler can do. All you have to do is run crontab -e from the terminal and enter the details. The process is covered in detail in another blog post

Some other Linux-specific tools available on Linux distributions are systemd (read as system-d) and Anacron.

Conclusion

Thanks to software found in every PC running Windows, the in-Python task scheduler may be an unnecessary burden. Automating Python web scraping scripts with Windows Task Scheduler is a quick and easy-to-use solution for running tasks at predefined intervals, even while the computer is sleeping. 

Exclusive to Windows, the Task Scheduler has an analogue automation solution on macOS and Linux called Cron. 

If you're looking for an easy way to scrape websites, check out our daily proxies for scraping and Scraper API solutions that's specifically built to get the data you need with ease. Don’t forget to take a look at other solutions for Python web scraping, such as how to make it faster and for specific use cases - how to build a price tracker or how to automate competitor analysis.

People also ask

How to schedule a Python script via the Cron job on Windows?

Windows has a better and easier-to-use tool - Windows Task Scheduler. Windows Task Scheduler is an alternative to Cron, available on Unix and Unix-like operating systems such as macOS and Linux. Windows Task Scheduler has, in fact, more features than Cron.

Does Windows Task Scheduler work when the computer is sleeping?

Yes, it does. When creating a new task or editing an existing one, go to the Conditions tab and select Wake the computer to run this task.

Note that this will work only if the computer is sleeping. If you shut down the computer, Windows Task Scheduler can’t start the computer to run this task. 

About the author

Augustas Pelakauskas

Augustas Pelakauskas

Senior Copywriter

Augustas Pelakauskas is a Senior Copywriter at Oxylabs. Coming from an artistic background, he is deeply invested in various creative ventures - the most recent one being writing. After testing his abilities in the field of freelance journalism, he transitioned to tech content creation. When at ease, he enjoys sunny outdoors and active recreation. As it turns out, his bicycle is his fourth best friend.

All information on Oxylabs Blog is provided on an "as is" basis and for informational purposes only. We make no representation and disclaim all liability with respect to your use of any information contained on Oxylabs Blog or any third-party websites that may be linked therein. Before engaging in scraping activities of any kind you should consult your legal advisors and carefully read the particular website's terms of service or receive a scraping license.

Related articles

Get the latest news from data gathering world

I’m interested

IN THIS ARTICLE:


  • Guide to running a Windows Task Scheduler Python Script


  • Common reasons why Windows Task Scheduler Python script isn't running


  • Other web scraping automation alternatives


  • Conclusion

Forget about complex web scraping processes

Choose Oxylabs' advanced web intelligence collection solutions to gather real-time public data hassle-free.

Scale up your business with Oxylabs®