Go Excel to protobuf and upgrade to python3

Title: go Excel to protobuf to python3 categories: Go tags: [go, excel, protobuf, python3] date: 2020-01-15 16:27:24 comments: false Go Excel to protobuf and upgrade to python3 Previous articles The XLS? Deploy? Tool.py conversion tool found on the Internet is python2 version. Here, upgrade it ...

Posted by Birch on Thu, 23 Jan 2020 06:51:28 -0800

[python automatic office] insert pictures, generate histogram, line chart and pie chart into Excel file

Insert picture openpyxl.drawing.image/sheet.add_image() import os os.chdir('D:\\python_major\\auto_office9') from openpyxl import load_workbook from openpyxl.drawing.image import Image workbook = load_workbook(filename = 'This is a form.xlsx') sheet = workbook.active photo = Image('1.jpg') photo.heig ...

Posted by phwae on Tue, 21 Jan 2020 05:19:44 -0800

VBA for all improve Lesson 12: call WORD

VBA operation word Tagged digit Requirement: mark all numbers in the word document Sub modify word All numbers for() t = Timer() Dim i As Long, c As Range, d As Document 'Traverse all characters in the paragraph For i = 1 To Application.ActiveDocument.Characters.Count 'Will be ...

Posted by jacobelias on Mon, 20 Jan 2020 01:41:08 -0800

How to query Azure virtual machine creation record

Recently, I received a demand. I want to see the record of Azure virtual machine creation, and learn more about what new resources are available on the cloud recently. This is actually a relatively normal demand. With the increasing use of cloud, many enterprises are no longer satisfied with simple cloud use, but more focused on how to use the ...

Posted by etrooper on Fri, 17 Jan 2020 07:34:34 -0800

C + + design pattern observer pattern

Observer mode In GOF's "design pattern: the foundation of reusable object-oriented software", the observer pattern is said as follows: define a one to many dependency between objects. When the state of an object changes, all objects that depend on it are notified and automatically updated. ...

Posted by mrMarcus on Fri, 17 Jan 2020 01:00:43 -0800

WPS guide for browser application integration

Because the WPS plug-in uses NPAPI mechanism to interact with browsers, it is required that browsers using plug-ins must support NPAPI mechanism and enable NPAPI mechanism. The following are common supported browsers and their versions: FireFox browser 52 and versions less than 52 (NPAPI is no longer supported for versions higher than 52) Chr ...

Posted by jme on Thu, 16 Jan 2020 23:02:03 -0800

Python Crash Course Reading Notes - Chapter 2: Variables and Simple Data Types

variable In the file hello_world.py,.Py is the suffix of the python file and is therefore parsed using the Python interpreter. $ cat hello_world.py print("Hello Python world!") Now change to variable form, message is variable, and each variable is associated with a value: message = "Hello Python worl ...

Posted by gfadmin on Wed, 15 Jan 2020 16:49:55 -0800

Realize the preview function similar to Baidu online disk: support Word, Excel and Ppt

I'm a technical Xiaobai. The boss asked me to write a function of office online preview a few days ago. It's similar to Baidu online disk. I find all kinds of materials and summarize the methods I think are better to use.   There are probably several ways to preview office online.   The first kin ...

Posted by Yves on Mon, 13 Jan 2020 05:25:32 -0800

One click crawling result of Java crawler and save it as Excel

One click crawling result of Java crawler and save it as Excel Save crawling results as an Excel table There is no official tutorial for exporting Excel. Here I will send a tutorial for exporting to Excel Guide bag I like to use Gradle because of my hobbies, so I'll use the Gradle configuration here //Reptile pack compile group: 'us.codecraft', ...

Posted by awais_ciit on Sun, 12 Jan 2020 07:17:13 -0800

POI tool operation excel encapsulation excel export tool class based on annotation

POI is often used to export excel, but if you have to write your own every time you export, it will be more troublesome, and the code is basically repeated. So recently, I spent a little time and studied. According to the annotation and reflection technology, I wrote a tool class for POI to export ex ...

Posted by davieboy on Sat, 11 Jan 2020 06:45:19 -0800