search
HomeBackend DevelopmentPython TutorialWhat is the Python command line scheduled task automation workflow?

1. Usage scenarios

Execute the jmeter script regularly and execute command line commands at intervals through the python timer.

2. Library

os, datetime, threading

(1) Use threading.Timer() timer to implement scheduled tasks

Timer method Description
Timer(interval, function, args=None, kwargs=None) Create timer
cancel() Cancel timer
start() Use thread mode to execute
join(self, timeout=None) Wait for the end of thread execution

timer The most basic understanding is that timers can start multiple scheduled tasks. These timer tasks are executed asynchronously, so there is no problem of waiting for sequential execution.

3. Run the script

jmeter execution command line

jmeter -n -t script name.jmx -l script report name.jtl

Parameter description:

  • n Non-GUI mode, command line mode (indicates running in non-GUI mode)

  • -t Test file, jmeter test script file to be run (generally use absolute path)

  • -l Result file, file to record the results

  • - h Get jmeter help information

  • -r Remote execution, start the remote server (start all remote agents configured by remote-hosts in non-gui mode)

  • -R Remote execution, (start the specified machine (IP: PORT) as a proxy machine in non-gui mode)

  • -e Generate test report after setting up the test

  • -o Specify the folder where the test report is generated. The folder must be empty/does not exist

  • -H Agent host (set the one used by jmeter Proxy host)

  • -P Proxy port (set the proxy port used by jmeter)

  • -X Exit (the test ends in non-gui mode Exit at time)

4. Script

import os
from datetime import datetime
from threading import Timer
# 定时任务
def task():
    now = datetime.now()
    ts = now.strftime("%Y-%m-%d %H:%M:%S")
    print(datetime.now())
    a = os.system("jmeter -n -t /Users/liyinchi/workspace/功能测试/好慷/测试数据(压测脚本)/阶梯拼团多维表格20230418.jmx -l /Users/liyinchi/workspace/功能测试/好慷/测试数据(压测脚本)/阶梯拼团多维表格20230418-result.jtl")
    print(a)
# 执行器
def func():
    task()
    t = Timer(60*1, func)
    t.start()
func()

Execution result:

What is the Python command line scheduled task automation workflow?

5. Commonly used scheduled tasks in python

while True: sleep()

threading.Timer timer

Timeloop library performs scheduled tasks

Scheduling module sched

Scheduling Module schedule

Task framework APScheduler

Distributed message system celery executes scheduled tasks

Use the scheduled tasks that come with windows

6. Four methods are used Python calls the command line

(1) os.system

import os
a=os.system("ls")
a

The output will be displayed when running the program, and the return value a is the program exit code

(2) os.popen

import os
a=os.popen("ls")
a.readline()

The return value is a file file,

file.readlines() is the return value of the command

(3) subprocess

can be created in the python program Subprocess,

subprocess.call()

import subprocess
 subprocess.call(['ls','-l' ])

Among them, 'ls’ corresponds to the command entered on the command line, and -l is the corresponding operation. Returns the program exit code, similar to os.system

subprocess.check_output('ls')

Returns standard output, similar to os.popen.

You can also call the Popen object to perform operations. subprocess

import subprocess
child = subprocess.Popen('ping -c4 blog.linuxeye.com',shell=True)

At this time, multiple commands can be used to control the subprocess. You can also use subprocess.PIPE to connect the input and output of the self-process...

(4) commands

import commands
 commands.getoutput('ls')

Return to program output

The above is the detailed content of What is the Python command line scheduled task automation workflow?. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:亿速云. If there is any infringement, please contact admin@php.cn delete
详细讲解Python之Seaborn(数据可视化)详细讲解Python之Seaborn(数据可视化)Apr 21, 2022 pm 06:08 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

详细了解Python进程池与进程锁详细了解Python进程池与进程锁May 10, 2022 pm 06:11 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

Python自动化实践之筛选简历Python自动化实践之筛选简历Jun 07, 2022 pm 06:59 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

归纳总结Python标准库归纳总结Python标准库May 03, 2022 am 09:00 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于标准库总结的相关问题,下面一起来看一下,希望对大家有帮助。

Python数据类型详解之字符串、数字Python数据类型详解之字符串、数字Apr 27, 2022 pm 07:27 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

分享10款高效的VSCode插件,总有一款能够惊艳到你!!分享10款高效的VSCode插件,总有一款能够惊艳到你!!Mar 09, 2021 am 10:15 AM

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

详细介绍python的numpy模块详细介绍python的numpy模块May 19, 2022 am 11:43 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。

python中文是什么意思python中文是什么意思Jun 24, 2019 pm 02:22 PM

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use