Using Pythonista and Boto3
The Apple iPhone and iPad have this wonderful Python development environment called Pythonista. If you can import a module using the Pythonista StaSh extension, then you can get working with boto3 in Pythonista.
However, boto3 requires your AWS credentials to be configured either in a shared credentials file, in environment variables, or specified when the boto3 session, resource, or client is created.
Working with Pythonista requires some degree of creativity when dealing with issues like this one. However, there is no reason why you can’t get the same…