Skip to content

FNF-Pk-Dev/hxpy

 
 

Repository files navigation

hxpy

CI

Haxe/hxcpp @:native bindings for Python

This library works on the C++ target only!

Installation

via haxelib

haxelib install hxpy

via git for the latest updates

haxelib git hxpy https://github.com/FNF-Pk-Dev/hxpy.git

Usage

See the demos folder for more usage examples

With a file:

package;

import hxpy.Python;
import hxpy.Python.File;

class Main {
	public static function main():Void {
		//initializes the python instance
		Python.initialize();
		 //runs code               path to script file
		File.runSimpleFile("script.py");
		//closes the python instance
		Python.finalize();
	}
}

Without a file:

package;

import hxpy.Python;

class Main {
	public static function main():Void {
		//initializes the python instance
		Python.initialize();
		//runs code
		Python.runSimpleString("print('Hello World From Embedded Python')");
		//closes the python instance
		Python.finalize();
	}
}

Licensing

hxpy is made available under the MIT License. Check LICENSE for more information.

Python is made available under various licenses. Check The Python Github or python.org for more information.

Haxe is made available under various licenses. Check The Haxe Github for more information.

About

Fork of Hxpy with many new functionalities

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Haxe 99.2%
  • Python 0.8%