bcpkgfox 0.16.9__py3-none-any.whl → 0.16.10__py3-none-any.whl
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.
- bcpkgfox/cli.py +14 -13
- {bcpkgfox-0.16.9.dist-info → bcpkgfox-0.16.10.dist-info}/METADATA +1 -1
- bcpkgfox-0.16.10.dist-info/RECORD +12 -0
- bcpkgfox-0.16.9.dist-info/RECORD +0 -12
- {bcpkgfox-0.16.9.dist-info → bcpkgfox-0.16.10.dist-info}/WHEEL +0 -0
- {bcpkgfox-0.16.9.dist-info → bcpkgfox-0.16.10.dist-info}/entry_points.txt +0 -0
- {bcpkgfox-0.16.9.dist-info → bcpkgfox-0.16.10.dist-info}/top_level.txt +0 -0
bcpkgfox/cli.py
CHANGED
|
@@ -24,7 +24,8 @@ class cli:
|
|
|
24
24
|
self.parser = argparse.ArgumentParser(
|
|
25
25
|
add_help=False,
|
|
26
26
|
description=f"{self.visuals.bold}{self.visuals.DK_ORANGE} BCFOX Library \n You can use the arguments in any order you want.\n\n Most flags are independent, you can use it alone or combine them in a single command interacting with each other when applicable.{self.visuals.RESET}",
|
|
27
|
-
formatter_class=argparse.
|
|
27
|
+
formatter_class=argparse.ArgumentDefaultsHelpFormatter
|
|
28
|
+
# formatter_class=argparse.RawTextHelpFormatter # Formats the 'help' text manually
|
|
28
29
|
)
|
|
29
30
|
|
|
30
31
|
self._setup_arguments()
|
|
@@ -35,25 +36,25 @@ class cli:
|
|
|
35
36
|
venv_group.add_argument(
|
|
36
37
|
'-v', '--venv',
|
|
37
38
|
action='store_true',
|
|
38
|
-
help="Creates a new virtual environment with all dependencies installed\n
|
|
39
|
+
help="Creates a new virtual environment with all dependencies installed\n"
|
|
39
40
|
)
|
|
40
41
|
|
|
41
42
|
venv_group.add_argument(
|
|
42
43
|
'-vc', '--venv-clean',
|
|
43
44
|
action='store_true',
|
|
44
|
-
help="Creates a virtual environment without dependencies\n
|
|
45
|
+
help="Creates a virtual environment without dependencies\n"
|
|
45
46
|
)
|
|
46
47
|
|
|
47
48
|
venv_group.add_argument(
|
|
48
49
|
'-rv', '--recreate-venv',
|
|
49
50
|
action='store_true',
|
|
50
|
-
help="Recreates venv (without dependencies)\n
|
|
51
|
+
help="Recreates venv (without dependencies)\n"
|
|
51
52
|
)
|
|
52
53
|
|
|
53
54
|
venv_group.add_argument(
|
|
54
55
|
'-dv', '--delete-venv',
|
|
55
56
|
action='store_true',
|
|
56
|
-
help="Deletes venv\n
|
|
57
|
+
help="Deletes venv\n"
|
|
57
58
|
)
|
|
58
59
|
|
|
59
60
|
|
|
@@ -61,52 +62,52 @@ class cli:
|
|
|
61
62
|
exe_group.add_argument(
|
|
62
63
|
'-e', '--exe',
|
|
63
64
|
action='store_true',
|
|
64
|
-
help="Creates a .exe of the file\n
|
|
65
|
+
help="Creates a .exe of the file\n"
|
|
65
66
|
)
|
|
66
67
|
|
|
67
68
|
exe_group.add_argument(
|
|
68
69
|
'-nc', '--no-console',
|
|
69
70
|
action='store_true',
|
|
70
|
-
help="The exe don't open the console when started\n
|
|
71
|
+
help="The exe don't open the console when started\n"
|
|
71
72
|
)
|
|
72
73
|
|
|
73
74
|
exe_group.add_argument(
|
|
74
75
|
'-z', '--zip',
|
|
75
76
|
action='store_true',
|
|
76
|
-
help="Make a zip of the 'dist' and rename it to the name of the file\n
|
|
77
|
+
help="Make a zip of the 'dist' and rename it to the name of the file\n"
|
|
77
78
|
)
|
|
78
79
|
|
|
79
80
|
exe_group.add_argument(
|
|
80
81
|
'-ic', '--icon',
|
|
81
82
|
type=str,
|
|
82
83
|
nargs='+',
|
|
83
|
-
help="Change the exe icon (put .ico path)\n
|
|
84
|
+
help="Change the exe icon (put .ico path)\n"
|
|
84
85
|
)
|
|
85
86
|
|
|
86
87
|
exe_group.add_argument(
|
|
87
88
|
'-ad', '--add-data',
|
|
88
89
|
type=str,
|
|
89
90
|
nargs='+',
|
|
90
|
-
help="Add data(s) to .exe (similar of pyinstaller)\n
|
|
91
|
+
help="Add data(s) to .exe (similar of pyinstaller)\n"
|
|
91
92
|
)
|
|
92
93
|
|
|
93
94
|
file_group = self.parser.add_argument_group(f'{self.visuals.ORANGE}{self.visuals.bold} File Options{self.visuals.RESET}')
|
|
94
95
|
file_group.add_argument(
|
|
95
96
|
'-fi', '--find-imports',
|
|
96
97
|
action='store_true',
|
|
97
|
-
help="Finds all imports necessary for the lib to work\n
|
|
98
|
+
help="Finds all imports necessary for the lib to work\n"
|
|
98
99
|
)
|
|
99
100
|
|
|
100
101
|
file_group.add_argument(
|
|
101
102
|
'-vi', '--verify-imports',
|
|
102
103
|
action='store_true',
|
|
103
|
-
help="Shows imports that were not installed automatically\n
|
|
104
|
+
help="Shows imports that were not installed automatically\n"
|
|
104
105
|
)
|
|
105
106
|
|
|
106
107
|
file_group.add_argument(
|
|
107
108
|
'-i', '--install-imports',
|
|
108
109
|
action='store_true',
|
|
109
|
-
help="Installs all imports necessary for the lib to work\n
|
|
110
|
+
help="Installs all imports necessary for the lib to work\n"
|
|
110
111
|
)
|
|
111
112
|
|
|
112
113
|
self.parser.add_argument(
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
bcpkgfox/__init__.py,sha256=tIFJ-KIMZK_ZjcrUg92QoHd2Rbte4cvuPMlPUzjtK0U,15945
|
|
2
|
+
bcpkgfox/cli.py,sha256=AnAesUIpvP5-qAXq4C1LARdQYeuQf5UiOglcF7xesog,30072
|
|
3
|
+
bcpkgfox/exec_file.py,sha256=fl_Do2SlF7JuXazpNTod-e_0WZUk355fbd7ustQvi40,3728
|
|
4
|
+
bcpkgfox/find_elements.py,sha256=oeB-73LqMLoKchozPXuxRkThBju9IgUKqbgU-2AAq0s,23027
|
|
5
|
+
bcpkgfox/get_driver.py,sha256=ohimk9E2hL6T35IXv0XX0uvWDGCUZvZDlPMnuRjV1R0,30490
|
|
6
|
+
bcpkgfox/invoke_api.py,sha256=UTksbSmg6yucWk-egH1gavYoViKvpUq-OAp5t308ZmY,5334
|
|
7
|
+
bcpkgfox/system.py,sha256=U5vEReSVIQ7LZ-1slUglNyU6k0Vahfioozm6QVEIqfE,6732
|
|
8
|
+
bcpkgfox-0.16.10.dist-info/METADATA,sha256=SZ4LNR5L48OqHsHzzwmkYAD0q9jyAWeApPq78QBtrF8,1912
|
|
9
|
+
bcpkgfox-0.16.10.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
10
|
+
bcpkgfox-0.16.10.dist-info/entry_points.txt,sha256=zzthtJtEpeRjlpE6YDBbSGVH6hvnnVyRxVSSgz1_S0M,337
|
|
11
|
+
bcpkgfox-0.16.10.dist-info/top_level.txt,sha256=h01SqyYBEfS72vkRFOlEDZBUSu9pzU0bdX4m9hWNNmw,9
|
|
12
|
+
bcpkgfox-0.16.10.dist-info/RECORD,,
|
bcpkgfox-0.16.9.dist-info/RECORD
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
bcpkgfox/__init__.py,sha256=tIFJ-KIMZK_ZjcrUg92QoHd2Rbte4cvuPMlPUzjtK0U,15945
|
|
2
|
-
bcpkgfox/cli.py,sha256=RDJsePCHVWo7ABo9JYGIfm4Yn8uxa1EjqoA9sxroxHA,29990
|
|
3
|
-
bcpkgfox/exec_file.py,sha256=fl_Do2SlF7JuXazpNTod-e_0WZUk355fbd7ustQvi40,3728
|
|
4
|
-
bcpkgfox/find_elements.py,sha256=oeB-73LqMLoKchozPXuxRkThBju9IgUKqbgU-2AAq0s,23027
|
|
5
|
-
bcpkgfox/get_driver.py,sha256=ohimk9E2hL6T35IXv0XX0uvWDGCUZvZDlPMnuRjV1R0,30490
|
|
6
|
-
bcpkgfox/invoke_api.py,sha256=UTksbSmg6yucWk-egH1gavYoViKvpUq-OAp5t308ZmY,5334
|
|
7
|
-
bcpkgfox/system.py,sha256=U5vEReSVIQ7LZ-1slUglNyU6k0Vahfioozm6QVEIqfE,6732
|
|
8
|
-
bcpkgfox-0.16.9.dist-info/METADATA,sha256=gGuEuc5-BCfr5ey-DWuzeWO_1DDxUTh1mSsLX-88MmU,1911
|
|
9
|
-
bcpkgfox-0.16.9.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
10
|
-
bcpkgfox-0.16.9.dist-info/entry_points.txt,sha256=zzthtJtEpeRjlpE6YDBbSGVH6hvnnVyRxVSSgz1_S0M,337
|
|
11
|
-
bcpkgfox-0.16.9.dist-info/top_level.txt,sha256=h01SqyYBEfS72vkRFOlEDZBUSu9pzU0bdX4m9hWNNmw,9
|
|
12
|
-
bcpkgfox-0.16.9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|