Talk about how Jmeter executes Python scripts concurrently

1. Preface Recently, a small partner left a message to me in the background, saying that he wrote an Api interface for uploading large files with Django. Now he wants to test the stability of interface concurrency locally and ask me if I have a good scheme This article takes file upload as an example   Jmeter concurrent execution of Pyth ...

Posted by zevious on Mon, 06 Dec 2021 19:59:30 +0100

There are 7 Python toolkits for time series prediction, and there is always one for you

Welcome to pay attention to me, IT industry, focus on Python!   Time series problem is one of the most difficult problems in data science. Traditional processing methods such as ARIMA and SARIMA are very good, but it is difficult to achieve satisfactory prediction results when dealing with nonlinear or non-stationary time series problems. ...

Posted by pelegk2 on Fri, 03 Dec 2021 22:55:19 +0100

The most complete Python virtual environment usage

Write in front As a newcomer, I never thought about Python virtual environment management. I thought that all the libraries I want to use are installed together. How good it is to use direct import. However, later, I learned more and more. I not only shed tears of regret, but this time, I caught all the methods of Python virtual environment ma ...

Posted by Alith7 on Wed, 24 Nov 2021 12:22:16 +0100

Detailed description of Python's tablib Library

introduce Tablib is a format-independent table dataset database written in Python. It allows pythonical import, export, and manipulation of tabular datasets. Advanced functionality includes isolation, dynamic columns, tag/filter, and seamless format import/export. install pip install tablib You can also choose to install more dependencies ...

Posted by wilzy on Fri, 19 Nov 2021 18:31:59 +0100

[PyTorch] 2. Preliminary application of PyTorch

2.1 build a neural network using pytoch Learning objectives: Master the basic process of constructing neural network with PytorchMaster the implementation process of constructing neural network with Pytorch About torch.nn: Use Pytorch to build neural networks. The main tools are in torch.nn packagenn relies on autograd to define the model a ...

Posted by jmajeremy on Fri, 19 Nov 2021 08:26:06 +0100

Python | paging pdf files

I don't know if you have ever encountered such a situation, such as an e-book in pdf format. We often browse part of it, and the e-book has a large number of pages. Whenever you need to browse, you need to turn to the corresponding page number, which is a little cumbersome. In other cases, for example, if we want to share part of the contents ...

Posted by pragma on Sun, 31 Oct 2021 12:38:27 +0100

Download A-share list - from zero to firm offer 2

At present, the real offer mainly uses the daily data of a shares. The daily data can be downloaded free of charge on platforms such as BaoStock, Tushare and AKShare. We first choose BaoStock as the data source. This article records the process of downloading A-share list from BaoStock. BaoStock installation Open PyCharm and enter the follow ...

Posted by mjlively on Sat, 23 Oct 2021 10:29:29 +0200

python operation Excel, openpyxl learning notes

catalogue openpyxl package in python can be used to operate Excel Workbook operation 1. Create a new workbook 2. Save Workbook 3. Open an existing workbook 4. Get the default worksheet 5. Get worksheet by name 6. Get worksheets in order 7. Get all worksheets Worksheet operation 1. Create a worksheet 2. Delete worksheet 3. Get works ...

Posted by syd on Mon, 18 Oct 2021 23:56:13 +0200

Introduction to Python quick programming # learning notes 04# | Chapter 4: string (% formatting symbol, format() formatting string, f-string formatting string and common operations of string)

Leading knowledge: Introduction to Python quick programming # learning notes 01# | Chapter 1: overview of python (Python development process, development tools and modules)Introduction to Python quick programming # learning notes 03# | Chapter 2: Fundamentals of python (code format, identifier keywords, variables and data types, number t ...

Posted by liquorvicar on Wed, 13 Oct 2021 18:18:33 +0200

Python learning notes 2021-10-13

What is a container and what is a list In life, a container refers to a container that can hold items. In a program, a container is a data structure that can put multiple elements together. The elements in the container can be obtained iteratively one by one. You can use keywords such as in, not in to judge whether an element is contained ...

Posted by frigidman on Wed, 13 Oct 2021 03:06:25 +0200