x6c1 2.0.0__tar.gz → 3.0.0__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.
- {x6c1-2.0.0 → x6c1-3.0.0}/PKG-INFO +1 -1
- {x6c1-2.0.0 → x6c1-3.0.0}/setup.py +1 -1
- {x6c1-2.0.0 → x6c1-3.0.0}/x6c1/__init__.py +1 -1
- {x6c1-2.0.0 → x6c1-3.0.0}/x6c1/cli.py +7 -7
- {x6c1-2.0.0 → x6c1-3.0.0}/x6c1.egg-info/PKG-INFO +1 -1
- {x6c1-2.0.0 → x6c1-3.0.0}/LICENSE +0 -0
- {x6c1-2.0.0 → x6c1-3.0.0}/README.md +0 -0
- {x6c1-2.0.0 → x6c1-3.0.0}/setup.cfg +0 -0
- {x6c1-2.0.0 → x6c1-3.0.0}/x6c1.egg-info/SOURCES.txt +0 -0
- {x6c1-2.0.0 → x6c1-3.0.0}/x6c1.egg-info/dependency_links.txt +0 -0
- {x6c1-2.0.0 → x6c1-3.0.0}/x6c1.egg-info/entry_points.txt +0 -0
- {x6c1-2.0.0 → x6c1-3.0.0}/x6c1.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: x6c1
|
3
|
-
Version:
|
3
|
+
Version: 3.0.0
|
4
4
|
Summary: A comprehensive tool for converting between hexadecimal representations and their corresponding text or numeric values
|
5
5
|
Home-page: https://github.com/celestine1729/x6c1
|
6
6
|
Author: celestine1729
|
@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
|
5
5
|
|
6
6
|
setup(
|
7
7
|
name="x6c1",
|
8
|
-
version="
|
8
|
+
version="3.0.0",
|
9
9
|
author="celestine1729",
|
10
10
|
author_email="celestine1729@proton.me",
|
11
11
|
description="A comprehensive tool for converting between hexadecimal representations and their corresponding text or numeric values",
|
@@ -191,15 +191,15 @@ def process_file(input_file, output_file, operation, **kwargs):
|
|
191
191
|
def main():
|
192
192
|
"""Main function to handle command line arguments."""
|
193
193
|
parser = argparse.ArgumentParser(
|
194
|
-
description="
|
194
|
+
description="x6c1 - Hex Translator by Celestine1729",
|
195
195
|
epilog="""
|
196
196
|
Examples:
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
197
|
+
x6c1 --hex "48656c6c6f" # Convert hex to text
|
198
|
+
x6c1 --text "Hello World" # Convert text to hex
|
199
|
+
x6c1 --numhex 255 # Convert number to hex
|
200
|
+
x6c1 --hexnum "ff" # Convert hex to integer
|
201
|
+
x6c1 --hexfloat "40091eb851eb851f" # Convert hex to float
|
202
|
+
x6c1 --file input.txt --output output.txt --hex # Process files
|
203
203
|
""",
|
204
204
|
formatter_class=argparse.RawDescriptionHelpFormatter
|
205
205
|
)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: x6c1
|
3
|
-
Version:
|
3
|
+
Version: 3.0.0
|
4
4
|
Summary: A comprehensive tool for converting between hexadecimal representations and their corresponding text or numeric values
|
5
5
|
Home-page: https://github.com/celestine1729/x6c1
|
6
6
|
Author: celestine1729
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|