anatools 5.1.28__py3-none-any.whl → 6.0.0__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.
- anatools/__init__.py +1 -1
- anatools/anaclient/anaclient.py +16 -15
- anatools/anaclient/api/api.py +2 -1
- anatools/anaclient/api/handlers.py +1 -1
- anatools/anaclient/channels.py +50 -25
- anatools/anaclient/datasets.py +33 -6
- anatools/anaclient/helpers.py +11 -10
- anatools/anaclient/services.py +46 -20
- anatools/anaclient/volumes.py +19 -18
- {anatools-5.1.28.data → anatools-6.0.0.data}/scripts/anadeploy +2 -0
- anatools-6.0.0.data/scripts/renderedai +3001 -0
- {anatools-5.1.28.dist-info → anatools-6.0.0.dist-info}/METADATA +1 -1
- {anatools-5.1.28.dist-info → anatools-6.0.0.dist-info}/RECORD +24 -23
- {anatools-5.1.28.dist-info → anatools-6.0.0.dist-info}/WHEEL +1 -1
- {anatools-5.1.28.data → anatools-6.0.0.data}/scripts/ana +0 -0
- {anatools-5.1.28.data → anatools-6.0.0.data}/scripts/anamount +0 -0
- {anatools-5.1.28.data → anatools-6.0.0.data}/scripts/anaprofile +0 -0
- {anatools-5.1.28.data → anatools-6.0.0.data}/scripts/anarules +0 -0
- {anatools-5.1.28.data → anatools-6.0.0.data}/scripts/anaserver +0 -0
- {anatools-5.1.28.data → anatools-6.0.0.data}/scripts/anatransfer +0 -0
- {anatools-5.1.28.data → anatools-6.0.0.data}/scripts/anautils +0 -0
- {anatools-5.1.28.dist-info → anatools-6.0.0.dist-info}/entry_points.txt +0 -0
- {anatools-5.1.28.dist-info → anatools-6.0.0.dist-info}/licenses/LICENSE +0 -0
- {anatools-5.1.28.dist-info → anatools-6.0.0.dist-info}/top_level.txt +0 -0
|
@@ -332,6 +332,7 @@ try:
|
|
|
332
332
|
while resp not in [str(i) for i in range(len(channels)+1)]:
|
|
333
333
|
resp = input(f'Invalid input, please enter a number between 0 and {len(channels)}: ')
|
|
334
334
|
remotechannel = channels[int(resp)-1]
|
|
335
|
+
print_color(f"Selected channel: {remotechannel['name']}", color='brand')
|
|
335
336
|
if volumes != remotechannel['volumes']:
|
|
336
337
|
client.edit_channel(channelId=remotechannel['channelId'], volumes=volumes)
|
|
337
338
|
remotechannel = client.get_channels(channelId=remotechannel['channelId'])[0]
|
|
@@ -493,6 +494,7 @@ try:
|
|
|
493
494
|
while resp not in [str(i) for i in range(len(services)+1)]:
|
|
494
495
|
resp = input(f'Invalid input, please enter a number between 0 and {len(services)}: ')
|
|
495
496
|
remoteservice = services[int(resp)-1]
|
|
497
|
+
print_color(f"Selected service: {remoteservice['name']}", color='brand')
|
|
496
498
|
if volumes != remoteservice['volumes']:
|
|
497
499
|
client.edit_service(serviceId=remoteservice['serviceId'], volumes=volumes)
|
|
498
500
|
remoteservice = client.get_services(serviceId=remoteservice['serviceId'])[0]
|