Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 321 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 321 Bytes

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