12 lines
129 B
Python
Executable File
12 lines
129 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""
|
|
Alarmy moich SNS
|
|
"""
|
|
|
|
|
|
import boto3
|
|
|
|
client = boto3.client('sns')
|
|
|
|
print(client.list_subscriptions())
|