Optimized compression of 20M files from 30 seconds to 1 second
There is a requirement to send 10 photos from the front end, then process them in the back end and compress them into a compressed package for output through network streaming.I haven't touched Java compressed files before, so I went online to find an example to change it. It can also be used after changing. But as the size of the pictures uplo ...
Posted by ade1982 on Thu, 15 Aug 2019 21:19:54 -0700
Experience Recall (Manual) => Python Version - Docker uses a simple example of selenium
Dockerfile is as follows
FROM python
RUN pip install -i http://pypi.douban.com/simple \
requests selenium retrying --trusted-host pypi.douban.com
docker-compose.yaml reads as follows
version: "3.7"
services:
myspider:
build: .
volumes: # Data Volume Mapping
- /root/mycode:/root/mycode
command: python /root/mycode/1.py
...
Posted by DarkJamie on Wed, 14 Aug 2019 00:39:35 -0700
Python Crawler lxml Library
1. lxml Library
lxml is an HTML/XML parser whose main function is to parse and extract HTML/XML data.
Like regular, lxml is implemented in C and is a high-performance Python HTML/XML parser that allows us to quickly locate specific elements and ...
Posted by vicky57t on Tue, 13 Aug 2019 18:41:13 -0700
[python] - Sklearn for common libraries
1. sklearn Profile
Scikit-learning is a common third-party module in machine learning. It encapsulates common machine learning methods, including Regression, Dimensional Reduction, Classification and Clustering.
Commonly used regression: linear, decision tree, SVM, KNN; integrated regression: random ...
Posted by psurrena on Tue, 13 Aug 2019 01:14:11 -0700
Eric 6 + PyQt5 (Python 3.7) Installation Tutorial (Perfect solution to Pyqt Web Engine couldn't be detected during installation)
Eric 6 + PyQt5 (Python 3.7) Installation Tutorial (Perfect solution to Pyqt Web Engine couldn't be detected during installation)
Eric, as a python IDE developed by python, belongs to lightweight IDE. As one of the three main Python integrated development environments (pydev+eclipse, pycharm, Eric), Er ...
Posted by guilhenfsu on Mon, 12 Aug 2019 03:25:06 -0700
Construction and Publishing of Python Packages
About me
A thoughtful programmer ape, a lifelong learning practitioner, currently works as a team lead er in an entrepreneurship team. The technology stack involves Android, Python, Java and Go, which is also the main technology stack of our team.
Github: https://github.com/hylinux1024
Wechat Public Nu ...
Posted by Japet on Fri, 09 Aug 2019 01:45:30 -0700
Python Simple Speech Recognition and Response
Python Simple Speech Recognition and Response
https://www.cnblogs.com/warcraft/p/10112486.html
Download the latest version of pyaudio address:
https://www.lfd.uci.edu/~gohlke/pythonlibs/#pyaudio
The reason is a colleague who likes to talk about Zen in his work. Yesterday he used to say, ...
Posted by tsfountain on Wed, 31 Jul 2019 20:28:40 -0700
Python basics: A simple introduction to Python
1. Introduction to Python
Python is a computer programming language.It is an object-oriented, dynamic type language that can be applied in the following areas:
Web and Internet Development
Scientific Computing and Statistics
cloud computing
Artificial intelligence
System Operations and Maintenance
Python was designed by Guido van Rossum in t ...
Posted by annihilate on Sat, 27 Jul 2019 15:12:45 -0700
Deep Learning for Initial Learning: Construction of Keras and Multilayer Perception Machine for Initial Test
In-depth learning for beginners (1): The construction of Keras and multi-layer perceptron for beginners
1. Creating environment and installation dependencies
As a Python release, Anaconda contains a large number of science packages and its own environment management tool Conda. Conda and Pip are rec ...
Posted by rondog on Wed, 24 Jul 2019 20:38:08 -0700
Development of natural language processing web server based on gensim
1. Notes on Natural Language Processing
1.generator and list differences
generator uses the next mechanism, instead of building the entire storage space, list s need to build the entire storage space
2. The meaning of u, r, b before the string
u indicate string use unicode
r indicate do not use transf ...
Posted by Pieman86 on Sun, 21 Jul 2019 19:44:31 -0700