re1sid-lib 0.2.0__tar.gz → 0.2.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {re1sid_lib-0.2.0 → re1sid_lib-0.2.1}/PKG-INFO +15 -1
- {re1sid_lib-0.2.0 → re1sid_lib-0.2.1}/README.md +14 -0
- {re1sid_lib-0.2.0 → re1sid_lib-0.2.1}/pyproject.toml +1 -1
- re1sid_lib-0.2.1/src/re1sid_lib/__init__.py +5 -0
- {re1sid_lib-0.2.0 → re1sid_lib-0.2.1}/src/re1sid_lib/tui.py +2 -2
- re1sid_lib-0.2.0/src/re1sid_lib/__init__.py +0 -5
- {re1sid_lib-0.2.0 → re1sid_lib-0.2.1}/src/re1sid_lib/common.py +0 -0
- {re1sid_lib-0.2.0 → re1sid_lib-0.2.1}/src/re1sid_lib/downloader.py +0 -0
- {re1sid_lib-0.2.0 → re1sid_lib-0.2.1}/src/re1sid_lib/patcher.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: re1sid-lib
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: Add your description here
|
|
5
5
|
Author: 09u2h4n
|
|
6
6
|
Author-email: 09u2h4n <09u2h4n.y1lm42@gmail.com>
|
|
@@ -105,6 +105,20 @@ output = patcher.patch_apk(
|
|
|
105
105
|
print(output)
|
|
106
106
|
```
|
|
107
107
|
|
|
108
|
+
### Patch an APK via terminal user interface
|
|
109
|
+
|
|
110
|
+
Patch an APK file with tui
|
|
111
|
+
|
|
112
|
+
## Installation
|
|
113
|
+
|
|
114
|
+
```pip install re1sid["tui"]```
|
|
115
|
+
|
|
116
|
+
```python
|
|
117
|
+
from re1sid_lib import Re1sidTUI()
|
|
118
|
+
|
|
119
|
+
Re1sidTUI().run()
|
|
120
|
+
```
|
|
121
|
+
|
|
108
122
|
## Notes
|
|
109
123
|
|
|
110
124
|
- `Downloader.download_all()` removes the `.revanced_res` directory before downloading fresh assets.
|
|
@@ -82,6 +82,20 @@ output = patcher.patch_apk(
|
|
|
82
82
|
print(output)
|
|
83
83
|
```
|
|
84
84
|
|
|
85
|
+
### Patch an APK via terminal user interface
|
|
86
|
+
|
|
87
|
+
Patch an APK file with tui
|
|
88
|
+
|
|
89
|
+
## Installation
|
|
90
|
+
|
|
91
|
+
```pip install re1sid["tui"]```
|
|
92
|
+
|
|
93
|
+
```python
|
|
94
|
+
from re1sid_lib import Re1sidTUI()
|
|
95
|
+
|
|
96
|
+
Re1sidTUI().run()
|
|
97
|
+
```
|
|
98
|
+
|
|
85
99
|
## Notes
|
|
86
100
|
|
|
87
101
|
- `Downloader.download_all()` removes the `.revanced_res` directory before downloading fresh assets.
|
|
@@ -253,7 +253,7 @@ def _coerce(text: str) -> Any:
|
|
|
253
253
|
# --------------------------------------------------------------------------- #
|
|
254
254
|
|
|
255
255
|
|
|
256
|
-
class
|
|
256
|
+
class Re1sidTUI(App):
|
|
257
257
|
"""Textual front end for re1sid-lib."""
|
|
258
258
|
|
|
259
259
|
TITLE = "re1sid-lib TUI"
|
|
@@ -602,7 +602,7 @@ class ReVancedTUI(App):
|
|
|
602
602
|
|
|
603
603
|
|
|
604
604
|
def main() -> None:
|
|
605
|
-
|
|
605
|
+
Re1sidTUI().run()
|
|
606
606
|
|
|
607
607
|
|
|
608
608
|
if __name__ == "__main__":
|
|
File without changes
|
|
File without changes
|
|
File without changes
|