mcm-cli 0.47__tar.gz → 0.471__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
Files changed (27) hide show
  1. {mcm_cli-0.47/mcm_cli.egg-info → mcm_cli-0.471}/PKG-INFO +1 -1
  2. {mcm_cli-0.47 → mcm_cli-0.471/mcm_cli.egg-info}/PKG-INFO +1 -1
  3. {mcm_cli-0.47 → mcm_cli-0.471}/mcmcli/__main__.py +1 -1
  4. {mcm_cli-0.47 → mcm_cli-0.471}/mcmcli/command/account.py +5 -5
  5. {mcm_cli-0.47 → mcm_cli-0.471}/setup.py +1 -1
  6. {mcm_cli-0.47 → mcm_cli-0.471}/LICENSE +0 -0
  7. {mcm_cli-0.47 → mcm_cli-0.471}/NOTICE +0 -0
  8. {mcm_cli-0.47 → mcm_cli-0.471}/README.md +0 -0
  9. {mcm_cli-0.47 → mcm_cli-0.471}/mcm_cli.egg-info/SOURCES.txt +0 -0
  10. {mcm_cli-0.47 → mcm_cli-0.471}/mcm_cli.egg-info/dependency_links.txt +0 -0
  11. {mcm_cli-0.47 → mcm_cli-0.471}/mcm_cli.egg-info/entry_points.txt +0 -0
  12. {mcm_cli-0.47 → mcm_cli-0.471}/mcm_cli.egg-info/requires.txt +0 -0
  13. {mcm_cli-0.47 → mcm_cli-0.471}/mcm_cli.egg-info/top_level.txt +0 -0
  14. {mcm_cli-0.47 → mcm_cli-0.471}/mcmcli/__init__.py +0 -0
  15. {mcm_cli-0.47 → mcm_cli-0.471}/mcmcli/command/auth.py +0 -0
  16. {mcm_cli-0.47 → mcm_cli-0.471}/mcmcli/command/config.py +0 -0
  17. {mcm_cli-0.47 → mcm_cli-0.471}/mcmcli/command/wallet.py +0 -0
  18. {mcm_cli-0.47 → mcm_cli-0.471}/mcmcli/data/account.py +0 -0
  19. {mcm_cli-0.47 → mcm_cli-0.471}/mcmcli/data/account_user.py +0 -0
  20. {mcm_cli-0.47 → mcm_cli-0.471}/mcmcli/data/error.py +0 -0
  21. {mcm_cli-0.47 → mcm_cli-0.471}/mcmcli/data/seller.py +0 -0
  22. {mcm_cli-0.47 → mcm_cli-0.471}/mcmcli/data/token.py +0 -0
  23. {mcm_cli-0.47 → mcm_cli-0.471}/mcmcli/data/wallet.py +0 -0
  24. {mcm_cli-0.47 → mcm_cli-0.471}/mcmcli/logging.py +0 -0
  25. {mcm_cli-0.47 → mcm_cli-0.471}/mcmcli/requests.py +0 -0
  26. {mcm_cli-0.47 → mcm_cli-0.471}/setup.cfg +0 -0
  27. {mcm_cli-0.47 → mcm_cli-0.471}/tests/test_config.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mcm-cli
3
- Version: 0.47
3
+ Version: 0.471
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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mcm-cli
3
- Version: 0.47
3
+ Version: 0.471
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
@@ -31,7 +31,7 @@ def version():
31
31
  """
32
32
  Show the tool version
33
33
  """
34
- typer.echo(f"Version: mcm-cli v0.47")
34
+ typer.echo(f"Version: mcm-cli v0.471")
35
35
 
36
36
  app.add_typer(mcmcli.command.account.app, name="account", help="Ad account management")
37
37
  app.add_typer(mcmcli.command.auth.app, name="auth", help="Authentication management")
@@ -76,9 +76,9 @@ def bulk_invite_ad_account_owners(
76
76
  success_count = 0
77
77
  account_creation_count = 0
78
78
  for row in csv_data:
79
- account_id = row[0]
80
- email_address = row[1]
81
- user_name = row[2]
79
+ account_id = row[0].strip()
80
+ email_address = row[1].strip()
81
+ user_name = row[2].strip()
82
82
  print('.', end='', file=sys.stderr, flush=True)
83
83
 
84
84
  # Check if the ad account exists
@@ -134,8 +134,8 @@ def bulk_check_user_registrations(
134
134
 
135
135
  print('"Ad Account ID","Is Ad Account Exist","User Email","Is User Exist","User Role","User Status"')
136
136
  for row in csv_data:
137
- account_id = row[0]
138
- email_address = row[1]
137
+ account_id = row[0].strip()
138
+ email_address = row[1].strip()
139
139
  account = _lookup_dict(account_id, account_dictionary)
140
140
  is_account_exist = "No Account Exists" if account is None else "Account Exists"
141
141
 
@@ -18,7 +18,7 @@ from setuptools import setup, find_packages
18
18
 
19
19
  setup(
20
20
  name='mcm-cli',
21
- version='0.47',
21
+ version='0.471',
22
22
  description='A command-line interface for Moloco Commerde Media',
23
23
  long_description=open('README.md').read(),
24
24
  long_description_content_type='text/markdown',
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes