Instagram Picture Crawler of Python (I)
Hello, I haven't seen you for a long time. Yesterday I finally planned to write another example of a crawler. So today I will share the results decisively.This code is written in Python.
Analysis page
First of all, we need to have a wall-turning tool. After all, Instagram is already outside the wall. Here it is. Choose it. Firefly As a tool to ...
Posted by solarith on Sun, 02 Jun 2019 12:00:21 -0700
Use WebView in Android
Role: Controls that display html rich text
--Load html:
LoadData (String html,'text/html; charset=utf-8', null) loads HTML web page content
loadUrl(String url) loads web page data from the Internet
LoadUrl (String url, HashMap < String, String > headers) loads the web page with a request header parameter
loadUrl(String url) loads web ...
Posted by narch31 on Sun, 02 Jun 2019 09:37:10 -0700
Samba client configuration
First, record how the linux client accesses the shared folder of windows or linux with commands
The first step is smbclient-L//192.168.100.5-U public (smbclient is the command-L is to list which shared files the server has-U followed by the user name)
The second step is to enter the password and see the folder shared by the server. Then you e ...
Posted by martincrumlish on Sat, 01 Jun 2019 15:13:50 -0700
[Python] wxPython status bar component, message dialog component learning summary (original)
1. Status Bar Components
1. Basic Introduction
Above:
In the red box is the status bar.
He can be divided into several blocks, for example, the former is divided into two blocks, and the proportion is fixed, which can be specified at the time of creation.
Each block can display information and update the contents of each block in r ...
Posted by rlindauer on Fri, 31 May 2019 16:29:56 -0700
Python - Seaborn Visualization: Some tips for personalizing graphics
1 Overview
In the process of visualization, the default cartographic effect is often unsatisfactory and various settings are expected to be personalized.
This article introduces personalization in seaborn visualization through a simple example.Include common settings such as:
Set Chart Display Color
Set chart title including display p ...
Posted by nita on Fri, 31 May 2019 10:54:21 -0700
Python resource packaging script
Using Python to implement calling system api to execute TexturePacker instructions to map resources
Using zipfile Library in Python to make zip package operation on the completed graph
Python is also on sale now. To do this, first of all, I need to be familiar with python's functions related to file manipulation.
Environment: Windows ...
Posted by dewknight on Wed, 29 May 2019 10:39:13 -0700
Summary of WebView usage in Android
Preface:
Today, a bug in the revision project about the use of WebView aroused my motivation to summarize WebView. Today, I have time to make a summary.
Use scenarios:
1. Adding permissions
<uses-permission android:name="android.permission.INTERNET" />
2. Layout file
<WebView
android:id="@+id/webView"
android:layou ...
Posted by daneilair on Mon, 27 May 2019 14:36:59 -0700
[Front-end Knowledge Points] Details js variables, scopes and memory
The basic type values are undefined, NUll, Boolean, Number and String, which occupy a fixed size space in memory, and their values are stored in stack space, which we access by value.
(1) Value type: numerical value, Boolean value, null, undefined.
(2) Reference type: object, array, function.
If you assign a value of a reference type, yo ...
Posted by mithril on Sun, 26 May 2019 12:14:10 -0700
Using Gitblit to Build Git Server on Windows Platform
Installation of Java
Two Configuration Java Environment Variables
Three Gitblit Servers
Four configurations Gitblit users
I. Installing Java
Download address: http://www.java.com/zh_CN/
Just install it directly.
Configuring Java environment variables
Right-click "Computer"=> "Property"=> "Advanced Sy ...
Posted by Hybrid Kill3r on Sun, 26 May 2019 11:34:11 -0700
Source Activity Event Delivery and Distribution Process
1. The Passing Process of Activity to Click Events
_Click events are represented by Motion Event. When a click event occurs, the event is first passed to the current user by WMS.
Activity, which is distributed by Activity's dispatch TouchEvent.
Activity # dispatchTouchEvent
Call to handle touch screen events, Activity dispatchTouchEvent ...
Posted by troinfo on Sat, 25 May 2019 15:14:10 -0700