Python+Appium [Chapter 4] equipment operation
Topics of this chapter
Basic equipment operation
Shake it
Perform shaking action on the device
import time
from appium import webdriver
from appium.webdriver.webdriver import By
from appium.webdriver.connectiontype import ConnectionType
des = {
"platformName": "Android",
"platformVersion": "9",
"deviceName": "mac virt ...
Posted by gid__ on Mon, 17 Jan 2022 06:43:43 +0100
Reverse analyze the TCP private protocol of an app and realize batch data capture
1. Preface
Steps: analyze Android global Java obfuscator, analyze TCP private protocol, and write socket script to realize data capture
The analyzed app is here
https://wwo.lanzouy.com/ifKPbytn9mh
password:fhj0
This analysis process is limited to learning and use. Do not use it for illegal purposes. If the reader uses it for illegal purpo ...
Posted by husslela03 on Mon, 17 Jan 2022 04:42:52 +0100
Nginx deployment Django Python virtual environment creation fool tutorial
The relationship between uwsgi and nginx is not discussed here, but learning is recommended
Generally speaking, Nginx can ensure load balance when your web page supports more requests,
Simple web pages can also meet the requirements with uwsgi deployment and django runserver, so the load capacity is
Nginx > uwsgi > local django runse ...
Posted by tim_ver on Mon, 17 Jan 2022 04:09:59 +0100
[Python] detailed explanation of addition, deletion and modification of list, implementation of stack and queue, and precautions
summary
In actual development, it is often necessary to store a set (more than one) of data for later code to use. At this point, you may have heard of an Array, which can store multiple data one by one, and each element in the Array can be accessed through the Array subscript.
It should be clear that Python does not have arrays, but adds ...
Posted by phpzone on Mon, 17 Jan 2022 01:50:05 +0100
Alipy package for active learning: detailed explanation of tools
2. Alipy tool class
this section further alipy tool classes, including data operation, query strategy, Oracle, index management, performance measurement, etc. reference link: http://parnec.nuaa.edu.cn/huangsj/alipy/
2.1 data operation
for our scientific researchers, what are the first steps of the experiment? Data pr ...
Posted by jeankaleb on Mon, 17 Jan 2022 01:36:21 +0100
python draws OD expectation lines (including finding shapefile files)
Recently, the OD data of a Hangzhou region was analyzed, and the OD expectation line needs to be drawn on the base map of Hangzhou administrative region. There are two main tasks.
1. Find the shapefile file of Hangzhou administrative region and it can be read by python
2. Draw the OD expectation line between the administrative regions in Hang ...
Posted by richie1975 on Mon, 17 Jan 2022 00:49:36 +0100
Python function decorator (on def @) -- Python Learning Series
Python function decorator
Occasionally, you will see the following forms of code in python:
@functionA
def functionB():
...
return
So what is the role of @ functionA? First answer:
@functionA <=> functionB = functionA(functionB)
The following is an explanation through a case. If there are deficiencies, you are welcome to correc ...
Posted by hawkeyes on Mon, 17 Jan 2022 00:25:34 +0100
The second bullet of BUU-RSA primer collection
The second bullet of BUUCTF-RSA check-in question, interesting or difficult RSA questions are placed separately in the column BUUCTF RSA column_ Xiaohan's blog - CSDN blog
Dangerous RSA (low encryption index attack)
subject
n=0x52d483c27cd806550fbe0e37a61af2e7cf5e0efb723dfc81174c918a27627779b21fa3c851e9e94188eaee3d5cd6f752406a43fbecb53 ...
Posted by cmgmyr on Sun, 16 Jan 2022 23:56:22 +0100
Easily complete a distributed transaction TCC, nanny level tutorial with python
What is distributed transaction? Inter bank transfer business is A typical distributed transaction scenario. Assuming that A needs inter-bank transfer to B, the data of two banks are involved. The ACID of transfer cannot be guaranteed through the local transaction of one database, but can only be solved through distributed transactions.
Distrib ...
Posted by chris_s_22 on Sun, 16 Jan 2022 23:42:18 +0100
Pandas data analysis - time related data types
The two common data types are datetime and timedelta.
As the name suggests, datetime means both date and time, indicating a specific point in time (timestamp). 2021-12-23 (date) 12:00:00 (time) ---> datetime
Timedelta indicates the difference between two time points. For example, the timedelta between 2020-01-01 and 2020-01-02 is one ...
Posted by ou812 on Sun, 16 Jan 2022 23:23:41 +0100