utils.py 191 Bytes
Newer Older
1
"""
2
Common utility methods for Mobile APIs.
3
"""
4 5 6 7 8


def parsed_version(version):
    """ Converts string X.X.X.Y to int tuple (X, X, X) """
    return tuple(map(int, (version.split(".")[:3])))