Skip to main content

Receive SMS

Project description

📖 Presentation

receive_sms is a library which allows to receive SMS in python free and unlimited.

⚙️ Installation

You can download the file or use PyPi :

pip install receive-sms

For getting informations, you can use :

pip show receive-sms

⌨️ Use

receive_sms.get_messages(phone_number='12018577757')

Returns the last 100 messages sent to phone_number (newest to oldest). How do I know which phone_number to put?

Messages are returned as a message class, here are its attributes:

message.text

Returns the content of message (str)

message.from_number

Returns the phone number you originally chose (str)

message.to_number

Returns the phone number that sent the message (str)

message.date

Returns the date of the message, imprecise (datetime)

💾 Example

import receive_sms # Import the library

data = receive_sms.get_messages(phone_number = '12018577757') # Get messages sent to 12018577757

# Print informations of each message
for msg in data:
    print(msg.text) # The content of the message
    print('from '+msg.from_number) # The number from which the message originated
    print('to '+msg.to_number) # Your number, in this case it's 12018577757
    print('the '+msg.date.strftime("%m/%d/%Y, %H:%M")) # The date
    print('\n') # Line break

This file is here.

ℹ️ To know

• Phone numbers are public, everyone can see received messages.

• Messages longer than 150 characters are split.

• The library uses sms-online.co.

The phone numbers you can use

+1 201-857-7757 - 🇺🇸 United States

+1 787-337-5275 - 🇵🇷 Puerto Rico

+60 11-1700 0917 - 🇲🇾 Malaysia

+44 7520 635797 - 🇬🇧 United Kingdom

+46 76 943 62 66 - 🇸🇪 Sweden

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

receive-sms-1.0.4.tar.gz (4.0 kB view hashes)

Uploaded Source

Built Distribution

receive_sms-1.0.4-py3-none-any.whl (4.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page