e164.py 152 B

12345678
  1. #!/usr/bin/env python
  2. from __future__ import print_function
  3. import dns.e164
  4. n = dns.e164.from_e164("+1 555 1212")
  5. print(n)
  6. print(dns.e164.to_e164(n))