
session.is_server_running # True if Airmore is running We created a session and now we need to make sure Airmore is running well on our device. In order to send SMS, we need to create a session between our PC and Android device first like so: ip = IPv4Address("192.168.1.xx") # let's create an IP address object # now create a session session = AirmoreSession(ip) # if your port is not 2333 # session = AirmoreSession(ip, 2334) # assuming it is 2334 from ipaddress import IPv4Address # for your IP address from pyairmore.request import AirmoreSession # to create an AirmoreSession from import MessagingService # to send messages You can change when your Android will sleep in Android battery settings. How Airmore works might be inconsistent across devices, it is better to keep Airmore open. Then, press “OK” but keep the screen open. In example above, your IP is 192.168.1.xxx and your port is 2333.

Then, touch the menu button (three vertical dots on top-right) and press “Get IP”. While the documentation is a bit technical, in this essay, let’s examine it in layman’s terms.Īssuming you have already installed both pyairmore to your computer and Airmore to your Android device, you need to start Airmore on your Android device.
GOOGLE AIRMORE APP HOW TO
Messaging Service section gives further information about how to send messages. Pyairmore has a documentation ju st to get your started, introducing how you get details about your mobile device. It is highly recommended to use it on wireless network.Īpart from all of these, it is still great if you own a small business or experiment with code.

GOOGLE AIRMORE APP INSTALL
You can install pyairmore with pip: pip install pyairmoreĪlso, you can grab Airmore for your Android device from here.
