mcm-cli 1.7.4__py3-none-any.whl → 1.7.5__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.
- {mcm_cli-1.7.4.dist-info → mcm_cli-1.7.5.dist-info}/METADATA +3 -1
- {mcm_cli-1.7.4.dist-info → mcm_cli-1.7.5.dist-info}/RECORD +8 -8
- mcmcli/__main__.py +1 -1
- {mcm_cli-1.7.4.dist-info → mcm_cli-1.7.5.dist-info}/LICENSE +0 -0
- {mcm_cli-1.7.4.dist-info → mcm_cli-1.7.5.dist-info}/NOTICE +0 -0
- {mcm_cli-1.7.4.dist-info → mcm_cli-1.7.5.dist-info}/WHEEL +0 -0
- {mcm_cli-1.7.4.dist-info → mcm_cli-1.7.5.dist-info}/entry_points.txt +0 -0
- {mcm_cli-1.7.4.dist-info → mcm_cli-1.7.5.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: mcm-cli
|
3
|
-
Version: 1.7.
|
3
|
+
Version: 1.7.5
|
4
4
|
Summary: A command-line interface for Moloco Commerde Media
|
5
5
|
Home-page: https://github.com/moloco-mcm/mcm-cli
|
6
6
|
Author: Moloco MCM Team
|
@@ -27,6 +27,8 @@ Requires-Dist: typer
|
|
27
27
|
|
28
28
|
# Moloco Commerce Media (MCM) CLI utility
|
29
29
|
|
30
|
+
[](https://pepy.tech/projects/mcm-cli)
|
31
|
+
|
30
32
|
This tool is a command-line interface for the Moloco Commerce Media Platform, formerly known as the Retail Media Platform.
|
31
33
|
|
32
34
|
Please contact the Moloco representative for more details.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
mcmcli/__init__.py,sha256=-U6lMZ9_99IXAKwnqnYXYr6NcO6TSmG-kxewgvJjU4k,575
|
2
|
-
mcmcli/__main__.py,sha256=
|
2
|
+
mcmcli/__main__.py,sha256=CmK7cg9IKPBqwf9I9XoufkwUslfZDbotL9ReHEiceaA,1844
|
3
3
|
mcmcli/logging.py,sha256=xjRS5ey1ONx_d34qB1Fetb_SwPysoh2hzNDuNAaYYWQ,1739
|
4
4
|
mcmcli/requests.py,sha256=IuySBQ8P_GoGF3f_TRysfgQNOhi2n9M84WK_eRXnoEU,2945
|
5
5
|
mcmcli/command/account.py,sha256=FWXmzOLj4rVLVLEv-w0eDVlQVrkONvR1UewZbcTDgE4,24994
|
@@ -23,10 +23,10 @@ mcmcli/data/seller.py,sha256=40SA7QekM3a3svDrDYLo_QYJ68VUxDO0KeGejJMp4k4,1004
|
|
23
23
|
mcmcli/data/token.py,sha256=11wtyLHCAZHu0LVbNDPa-yipcL6lenxoYIKEI58VzFs,1744
|
24
24
|
mcmcli/data/user_join_request.py,sha256=lXMO2hE_VpRg0JofVrYAVM82S-RLFkPrZk8-drvhoDI,1251
|
25
25
|
mcmcli/data/wallet.py,sha256=eMUi8N0vJdg_E10TPhSPoZkZtmIG7gHyqgabQ8C5Lg8,3217
|
26
|
-
mcm_cli-1.7.
|
27
|
-
mcm_cli-1.7.
|
28
|
-
mcm_cli-1.7.
|
29
|
-
mcm_cli-1.7.
|
30
|
-
mcm_cli-1.7.
|
31
|
-
mcm_cli-1.7.
|
32
|
-
mcm_cli-1.7.
|
26
|
+
mcm_cli-1.7.5.dist-info/LICENSE,sha256=RFhQPdSOiMTguUX7JSoIuTxA7HVzCbj_p8WU36HjUQQ,10947
|
27
|
+
mcm_cli-1.7.5.dist-info/METADATA,sha256=MWVvOXH-jPSep0wJluOvCXErAGS9ZrBE51aoES7dAik,3153
|
28
|
+
mcm_cli-1.7.5.dist-info/NOTICE,sha256=Ldnl2MjRaXPxcldUdbI2NTybq60XAa2LowRhFrRTuiI,76
|
29
|
+
mcm_cli-1.7.5.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
30
|
+
mcm_cli-1.7.5.dist-info/entry_points.txt,sha256=qTHAWZ-ejSiU4t11RYwtAU8ScqhQPDeMVTG9y4wMVLg,60
|
31
|
+
mcm_cli-1.7.5.dist-info/top_level.txt,sha256=sh7oqIaqLQlMtKHlxHHgpV2xGMrBMPFWpSp0C6nvJ_Y,7
|
32
|
+
mcm_cli-1.7.5.dist-info/RECORD,,
|
mcmcli/__main__.py
CHANGED
@@ -37,7 +37,7 @@ def version():
|
|
37
37
|
"""
|
38
38
|
Show the tool version
|
39
39
|
"""
|
40
|
-
typer.echo(f"Version: mcm-cli v1.7.
|
40
|
+
typer.echo(f"Version: mcm-cli v1.7.5")
|
41
41
|
|
42
42
|
app.add_typer(mcmcli.command.account.app, name="account", help="Ad account management")
|
43
43
|
app.add_typer(mcmcli.command.admin.app, name="admin", help="Platform administration")
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|