Take you to work efficiently: report automation with python

Source network, only for learning, if there is infringement, please contact delete. If we can achieve report automation, we will save a lot of time and complete the work more efficiently. So, how to use python to realize report automation? This article will introduce the common functions of xlwt, xlrd and xlutils, the application of formulas ...

Posted by JoeBuntu on Thu, 21 May 2020 23:13:05 -0700

Task 25 - first reptile test

First question: use the requests library to visit Baidu homepage 20 times, and return the length of his text and content attributes.   1 # -*- coding: utf-8 -*- 2 """ 3 Created on Tue May 19 10:12:16 2020 4 5 @author: 49594 6 """ 7 8 import requests 9 url = "https://www.baidu.com/" 10 for i in range(20): 11 try: 12 rest ...

Posted by RDx321 on Tue, 19 May 2020 07:45:21 -0700

Practical case: Python easily realizes PDF format conversion (with detailed source code)

    preface The text and pictures of this article are from the Internet, only for learning and communication, not for any commercial purpose. The copyright belongs to the original author. If you have any questions, please contact us in time for handling. Project background Online PDF conversion tools are dazzling, difficult to choose, some e ...

Posted by alexboyer on Mon, 18 May 2020 08:26:28 -0700

The realization of moving average filter in hand-held teaching series

[introduction]: in the previous article about IIR design, some friends are still reading it. Although I don't know how the officials feel, I think there is always a reward to read, so I decided to continue this series. This article talks about average filter, which is very easy at first glance. But I don't think some of the key points are clear ...

Posted by embtech on Sat, 16 May 2020 23:08:17 -0700

Dealing with Excel table cell format setting with OpenPyXL in Python

Official documents: http://openpyxl.readthedocs.io/en/default/ OpenPyXL Library -- cell style settings Cell style control, dependent on openpyxl.style Package, which defines the objects required by the style and introduces the style related: from openpyxl.styles import PatternFill, Font, Alignment, Border, Side Border border Side border Patter ...

Posted by Petty_Crim on Sat, 16 May 2020 00:23:15 -0700

First crawler and test

1, Improve the game procedures and test the game procedures. Change the end of the code slightly. If the code is correct, run it. Otherwise, output Error. from random import random #Printer introduction def printIntro(): print("19 Deng Ruoyan, No. 23, Xinji class 2") print("This program simulates two players A and B Table tennis comp ...

Posted by Deivas on Wed, 13 May 2020 10:27:12 -0700

File download - Download Excel

1. Prepare the data first. The data here is not the data directly found in the database, but a copy of the data found. The data of the two does not affect each other, so that the copied data can be modified. (1) define a method (implementation class method of service layer) of data found from database, omit the method of mapper mapping file and ...

Posted by Duey on Tue, 12 May 2020 07:10:01 -0700

Read by Unity3D -- read Excel file content

In the process of Unity3D development, reading excel table is a very frequent thing. It is mainly used to record various data. Various platforms may have many methods, such as Android, you can plug-in, or you can use third-party java to develop. dll package for Plugin, and then C ා and Java interact to realize Excel reading (it's troublesome, ...

Posted by jbille on Mon, 11 May 2020 09:08:14 -0700

How to export Excel gracefully in Java

Yunqi information:[ Click to see more industry information]Here you can find the first-hand cloud information of different industries. What are you waiting for? Come on! Preface There is a need for company project recently: report export. In the whole system, at least more than 100 reports need to be exported. At this time, how to implement rep ...

Posted by devofash on Fri, 08 May 2020 22:50:31 -0700

Python Testlink use case import tool excel 2xml

Case story: Testlink is a common use case management tool used by many companies, Testlink supports the development of test plans, the simultaneous management and maintenance / execution of test cases by multiple people online, and the automatic generation of test reports. I personally do not recommend Excel offline management test cases, Howe ...

Posted by atyndall on Thu, 07 May 2020 06:57:12 -0700