{"id":19846162,"url":"https://github.com/wswenyue/aklog","last_synced_at":"2025-05-01T21:31:05.578Z","repository":{"id":83229753,"uuid":"156203178","full_name":"wswenyue/aklog","owner":"wswenyue","description":"Android开发利器-AKLog   Android developer's Swiss Army Knife for Log ( Installation Run the following in your command-line:  $ brew tap wswenyue/aklog \u0026\u0026 brew install aklog)","archived":false,"fork":false,"pushed_at":"2024-10-17T11:48:13.000Z","size":2093,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-10-19T15:38:46.626Z","etag":null,"topics":["adb","aklog","android","log","logcat","logcat-viewer","recordvideo","screencapture"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wswenyue.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-11-05T10:56:34.000Z","updated_at":"2024-10-17T11:48:03.000Z","dependencies_parsed_at":"2024-03-15T06:22:06.761Z","dependency_job_id":"44051b90-515d-460e-8d2a-de8f92a7ed1e","html_url":"https://github.com/wswenyue/aklog","commit_stats":null,"previous_names":[],"tags_count":65,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wswenyue%2Faklog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wswenyue%2Faklog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wswenyue%2Faklog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wswenyue%2Faklog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wswenyue","download_url":"https://codeload.github.com/wswenyue/aklog/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224278438,"owners_count":17285080,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["adb","aklog","android","log","logcat","logcat-viewer","recordvideo","screencapture"],"created_at":"2024-11-12T13:10:40.368Z","updated_at":"2024-11-12T13:10:41.175Z","avatar_url":"https://github.com/wswenyue.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# aklog [![Release Application](https://github.com/wswenyue/aklog/actions/workflows/main.yml/badge.svg)](https://github.com/wswenyue/aklog/actions/workflows/main.yml)\nAndroid developer's Swiss Army Knife for Log\n\n![示例](./res/demo.jpg)\n\n### Installation\n\nRun the following in your command-line:\n\n```shell\n$ brew tap wswenyue/aklog \u0026\u0026 brew install aklog\n```\n\n### Update\n\nIf you need to update，Run the command:\n\n```shell\n$ brew upgrade aklog\n# or\n$ brew uninstall aklog \u0026\u0026 brew untap wswenyue/aklog \u0026\u0026 brew tap wswenyue/aklog \u0026\u0026 brew install aklog\n```\n\n### How to use\n\n```shell\n$ aklog -h\n\nusage: aklog.py [-h] [-v] [-pc | -pa | -p PACKAGE [PACKAGE ...] | -pn PACKAGE_NOT [PACKAGE_NOT ...]] [-tnf TAG_NOT_FUZZY [TAG_NOT_FUZZY ...] | -tn TAG_NOT [TAG_NOT ...]]\n                [-t TAG [TAG ...] | -te TAG_EXACT [TAG_EXACT ...]] [-mn MSG_NOT [MSG_NOT ...]] [-m MSG [MSG ...] | -mjson MSG_JSON_VALUE [MSG_JSON_VALUE ...]] [-l LEVEL]\n                [-cs [CMD_SCREEN_CAP] | -cr [CMD_RECORD_VIDEO]]\n\nAndroid开发利器-AKLog-v5.0.4 (Android developer's Swiss Army Knife for Log)\n\noptional arguments:\n  -h, --help            show this help message and exit\n  -v, --version         show program's version number and exit\n  -pc, --package_current_top\n                        匹配当前前台Top应用包名的日志,不加任何包名过滤条件时默认是此条件\n  -pa, --package_all    不过滤,支持显示所有包名日志\n  -p PACKAGE [PACKAGE ...], --package PACKAGE [PACKAGE ...]\n                        匹配指定包名的日志,不需要填写完整包名,只要能区分即可\n  -pn PACKAGE_NOT [PACKAGE_NOT ...], --package_not PACKAGE_NOT [PACKAGE_NOT ...]\n                        排除指定包名的日志,支持数组\n  -tnf TAG_NOT_FUZZY [TAG_NOT_FUZZY ...], --tag_not_fuzzy TAG_NOT_FUZZY [TAG_NOT_FUZZY ...]\n                        模糊匹配tag并过滤掉不显示, 支持数组 eg: -tnf tag1 tag2\n  -tn TAG_NOT [TAG_NOT ...], --tag_not TAG_NOT [TAG_NOT ...]\n                        匹配tag并过滤掉不显示, 支持数组 eg: -tn tag1 tag2\n  -t TAG [TAG ...], --tag TAG [TAG ...]\n                        匹配tag, 支持数组 eg: -t tag1 tag2\n  -te TAG_EXACT [TAG_EXACT ...], --tag_exact TAG_EXACT [TAG_EXACT ...]\n                        匹配tag, 精准完全匹配, 支持数组 eg: -te tag1 tag2\n  -mn MSG_NOT [MSG_NOT ...], --msg_not MSG_NOT [MSG_NOT ...]\n                        匹配日志内容关键词并过滤掉不显示,支持数组 eg: -mn msg1 msg2\n  -m MSG [MSG ...], --msg MSG [MSG ...]\n                        匹配日志内容关键词,支持数组 eg: -m msg1 msg2\n  -mjson MSG_JSON_VALUE [MSG_JSON_VALUE ...], --msg_json_value MSG_JSON_VALUE [MSG_JSON_VALUE ...]\n                        匹配日志内容中JSON结构的数据,并获取指定key的值,例如 -mjson keyA keyB 将匹配带有\"keyA\"或\"keyB\"的json数据,并将对应的值解析出来\n  -l LEVEL, --level LEVEL\n                        匹配日志级别(V|v|2, D|d|3, I|i|4, W|w|5, E|e|6)\n  -cs [CMD_SCREEN_CAP], --cmd_screen_cap [CMD_SCREEN_CAP]\n                        命令:获取当前手机截屏,并保持到(传入的)指定位置,默认位置是:$~/Desktop/AkScreen/\n  -cr [CMD_RECORD_VIDEO], --cmd_record_video [CMD_RECORD_VIDEO]\n                        命令:开始录制当前手机视频,并保持到(传入的)指定位置,默认位置是:$~/Desktop/AkRVideo/\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwswenyue%2Faklog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwswenyue%2Faklog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwswenyue%2Faklog/lists"}