Can my python program send me a text message?

Chris Angelico rosuav at gmail.com
Tue Mar 19 15:35:09 EDT 2019


On Wed, Mar 20, 2019 at 6:31 AM Steve <Gronicus at sga.ninja> wrote:
>
> I have a program that triggers a reminder timer.  When that timer is done, I would like to receive a text message on my phone to tell me that it is time to reset the experiment.
>
> Can this be done using Python?
>

Yes! There are APIs that will help you with that. Search the web for
"text message api" and see what you can find. (Be aware that some of
them will ask you to pay money.) Then pick one of them and see if you
can access it from Python.

Most of them will be HTTP-based APIs, so you will do well to use the
"requests" module.

ChrisA



More information about the Python-list mailing list