/photon-lang

Import Photon libraries on Python

Primary LanguagePythonGNU General Public License v2.0GPL-2.0

photon-lang

Import Photon libraries on Python

Installation

$ pip install photon-lang

Usage

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()
``