Validate UC alumni identifier numbers with Python 3.
Install the library with:
pip install -U ucnumber
from ucnumber import validate
is_valid = validate("1263476J")
if validate(14644088):
print("It's valid!")
# ...
Run the test suite with:
python -m unittest tests
To install it locally from the source code:
python setup.py develop
python setup.py register sdist upload