Import Photon libraries on Python
$ pip install photon-lang
Just import the library before any photon imports. Suppose you want to import test.so, created with photon. Then:
import photon_lang
import test
# now you can use any function in test
test.hello()
``