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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: re1sid-lib
3
- Version: 0.2.0
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.
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "re1sid-lib"
3
- version = "0.2.0"
3
+ version = "0.2.1"
4
4
  description = "Add your description here"
5
5
  readme = "README.md"
6
6
  license = { text = "Apache-2.0 license" }
@@ -0,0 +1,5 @@
1
+ from .downloader import Downloader
2
+ from .patcher import Patcher
3
+ from .tui import Re1sidTUI
4
+
5
+ __all__ = ["Downloader", "Patcher", "Re1sidTUI"]
@@ -253,7 +253,7 @@ def _coerce(text: str) -> Any:
253
253
  # --------------------------------------------------------------------------- #
254
254
 
255
255
 
256
- class ReVancedTUI(App):
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
- ReVancedTUI().run()
605
+ Re1sidTUI().run()
606
606
 
607
607
 
608
608
  if __name__ == "__main__":
@@ -1,5 +0,0 @@
1
- from .downloader import Downloader
2
- from .patcher import Patcher
3
- from .tui import ReVancedTUI
4
-
5
- __all__ = ["Downloader", "Patcher", "ReVancedTUI"]