Python wrapper for JetBrains/swot.
- Free software: Apache Software License 2.0
This library is a wrapper around JetBrains/swot and provides two methods:
>>> from pyswot import is_academic
>>> is_academic("[email protected]")
True
>>> is_academic("[email protected]")
False
>>> from pyswot import find_school_names
>>> find_school_names("[email protected]")
['University of Oxford']
>>> find_school_names("[email protected]")
[]