Android getevent for Humans!
Project description
Android's getevent for Humans!
Tested against Windows 10/ Python 3.11 / Anaconda
pip install geteventforhumans
https://www.youtube.com/watch?v=np2KZXZHzsY
The function start_getevent_for_humans in the module is designed to capture and log Android device input events in a human-readable format.
adb_path (optional, default: None):
Type: str
Description: The file path to the Android Debug Bridge (ADB) executable. If not specified, the function attempts to locate ADB using the system's environment variables.
logfolder (optional, default: None):
Type: str
Description: The directory path where event logs should be saved. If not specified, the logs will not be saved
device_serial (optional, default: '127.0.0.1:5555'):
Type: str
Description: The serial number of the Android device to be monitored. This is crucial when multiple devices are connected to the ADB host.
runasdaemon (optional, default: True):
Type: bool
Description: If set to True, the threads started by this function will run as daemons, allowing the main program to exit without having to manually terminate these threads.
bufsize (optional, default: 0):
Type: int
Description: The buffer size for reading data from the input streams. This size can impact performance and responsiveness in capturing event data.
shell (optional, default: True):
Type: bool
Description: Specifies whether the subprocesses should be invoked within a shell environment.
multiply (optional, default: 24):
Type: int
Description: Used as a multiplier in calculating the chunk size for data processing in some contexts. The exact usage should be confirmed within specific subprocess or threading implementations.
keepbuffer (optional, default: 4):
Type: int
Description: Determines the number of chunks to keep in memory buffer for processing, affecting how much past event data is accessible at any time.
ljust (optional, default: 12):
Type: int
Description: Specifies the padding length for string formatting within the logging output, ensuring alignment in log visualizations.
devices_to_observe (optional, default: empty tuple ()):
Type: tuple of str
Description: A tuple containing the identifiers of specific input devices to monitor, e.g., ("event3", "event4"). If empty, the script may default to monitoring all available devices.
Usage Example
To initiate the event monitoring for specific devices with custom settings, you might call the function like this:
from geteventforhumans import start_getevent_for_humans
import shutil
start_getevent_for_humans(
adb_path=shutil.which("adb"),
device_serial="127.0.0.1:5645",
logfolder="c:\\neuelogsadb",
runasdaemon=True,
bufsize=0,
shell=False,
multiply=24,
keepbuffer=1,
ljust=12,
devices_to_observe=("event3", "event4"),
)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
geteventforhumans-0.10.tar.gz
(15.1 kB
view hashes)
Built Distribution
Close
Hashes for geteventforhumans-0.10-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | fb5f9afa459752e01ba634e81aab47f3bce52d617834380e7b2aaec17f7574a8 |
|
MD5 | a743f0f9f753b4cbb13fce620e28b614 |
|
BLAKE2b-256 | fb0ce2f0a1b01857eec835d97d4d5ee027ef5044625299ac8ee194cdb774d69b |