Source code for python_hologram_api.cellular

"""Cellular Links module."""

try:
    from urllib.parse import urljoin  # python 3
except ImportError:
    from urlparse import urljoin  # python 2
import requests