Skip to main content

eventparser parser for Android

Project description

eventparser parser for Android

Tested against Windows 10 / Python 3.11 / Anaconda / BlueStacks

pip install cythonevparser

Cython and a C compiler must be installed!

import time
import regex as re
import cythonevparser
from cythondfprint import add_printer
import pandas as pd

add_printer(1)

cythonevparser.evparse.clean_cache()
adb_exe = ""
device_serial = ""
cythonevparser.evparse.create_temp_memdisk(
    memdisk_path="/media/ramdisk",
    adb_path=adb_exe,
    device_serial=device_serial,
    memdisk_size="128M",
    shell=False,
    su_exe="su",
)
evp = cythonevparser.evparse.EvParse(
    adb_exe=adb_exe,
    device_serial=device_serial,
    field_size=50,
    record_count=25,
    sleep_between_each_scan=0.01,
    regex_nogil=True,
    device_shell="sh",
    uiautomator_cmd=b"uiautomator events",
    sleep_after_starting_thread=3,
    thread_daemon=True,
    uiautomator_kill_cmd=b"pkill uiautomator",
    timeout_scan=0.1,
    screen_width=720,
    screen_height=1280,
    subproc_shell=True,
    with_children=False,
    add_screenshot=False,
    screenshot_kwargs=None,
    input_tap_center_x="aa_center_x",
    input_tap_center_y="aa_center_y",
    input_tap_input_cmd="input touchscreen tap",
    input_tap_kwargs=None,
    sendevent_mouse_move_start_x="aa_start_x",
    sendevent_mouse_move_start_y="aa_start_y",
    sendevent_mouse_move_end_x="aa_end_x",
    sendevent_mouse_move_end_y="aa_end_y",
    sendevent_mouse_move_y_max=65535,
    sendevent_mouse_move_x_max=65535,
    sendevent_mouse_move_inputdev="/dev/input/event5",
    sendevent_mouse_move_add=True,
    sendevent_mouse_move_kwargs=None,
    sendevent_mouse_move_su_exe="su",
    sendevent_mouse_move_sh_device="sh",
    sendevent_mouse_move_cwd_on_device="/media/ramdisk",
    sendevent_mouse_move_qty_blocks=16 * 24,
)
callback_function_kwargs = {}
callback_function_kwargs["regex_to_check"] = rb"Metallica"
callback_function_kwargs["regex_flags"] = re.IGNORECASE
evp.kill_ui_automator(["sh"])
time.sleep(5)
while True:
    df = evp.parse_elements_dataframe()
    for mousecmd in df.loc[
        df.aa_classname.str.contains("textview")
        & df.aa_element_id.str.contains("title")
    ].aa_mouse_move:
        print(mousecmd)
        evp.data_array[:] = b""
        evp.starttime.clear()
        mousecmd()
        evp.starttime.append(time.time())
        result = evp.start_event_parser(
            callback_function=evp.callback_function,
            max_timeout=0.1,
            callback_function_kwargs=callback_function_kwargs,
            sleep_between_each_scan=0.005,
            print_elements=True,
        )
        if evp.last_results:
            dfparsed = pd.DataFrame(evp.last_results, dtype="object")
            print(dfparsed["Text"])
            evp.last_results.clear()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cythonevparser-0.14.tar.gz (45.0 kB view hashes)

Uploaded Source

Built Distribution

cythonevparser-0.14-py3-none-any.whl (45.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page