mirror of
https://github.com/Sneed-Group/pypush-plus-plus
synced 2025-01-09 17:33:47 +00:00
13 lines
No EOL
227 B
Python
13 lines
No EOL
227 B
Python
import ids
|
|
import apns
|
|
from getpass import getpass
|
|
|
|
|
|
conn = apns.APNSConnection()
|
|
conn.connect()
|
|
|
|
username = input("Username: ")
|
|
password = getpass("Password: ")
|
|
user = ids.IDSUser(conn, username, password)
|
|
|
|
print(user.handles) |