5 lines
84 B
Python
5 lines
84 B
Python
#!/usr/bin/env python3
|
|
from sms import get_sms
|
|
for sms in get_sms():
|
|
print(sms)
|