#
ffi
Here are 488 public repositories matching this topic...
AlexArcPy
commented
Jun 3, 2018
Environment
- Pythonnet version: 2.3.0
- Python version: 2.7
- Operating System: Windows 10
Details
I have a C# class library which I use in Python. I have a Point class (a code snippet):
public Point(double x, double y)
{
this.x = x;
this.y = y;
}
public override string ToString()
{
return $"Point({x}, {y})";
}
Example of using Rust to Extend Python
-
Updated
Sep 7, 2020 - Python
MetaCall: The ultimate polyglot programming experience.
-
Updated
May 4, 2021 - C
Embed C++ directly inside your rust code!
-
Updated
Mar 25, 2021 - Rust
PHP 中文工具包,支持汉字转拼音、拼音分词、简繁互转、数字、金额大写;QQ群:17916227
-
Updated
Apr 15, 2021 - PHP
-
Updated
Apr 28, 2021 - PHP
Python interface to the awesome mpv media player
audio
python
gui
video
multimedia
mpv
ffi
media
pillow
bindings
media-player
libmpv
multimedia-player
-
Updated
Mar 19, 2021 - Python
Use snippets of Rust inline in your Haskell programs
-
Updated
Nov 24, 2019 - Haskell
Rust binding and tools for Emacs's dynamic modules
-
Updated
Mar 9, 2021 - Rust
facundominguez
commented
Feb 26, 2021
Currently, a Haskell program that reports uncaught exceptions in stderr looks like this:
main :: IO ()
main = withJVM [] $ handle (showException >=> Text.hPutStrLn stderr) the_programThe call to handle is cheap enough that it should be made inside of withJVM, making the default behavior the more chatty. Thus, the same behavior could be achieved with
main :game engine and framework written in luajit
linux
font
gui
lua-library
lua
game-engine
ffi
game-development
luajit
lua-script
love2d
ffi-wrapper
game-framework
luajit-ffi-bindings
engine3d
source-engine
garrysmod
luajit-ffi
game-dev
-
Updated
Mar 6, 2021 - Lua
-
Updated
Oct 19, 2020 - Python
A Dart interface to TensorFlow Lite (tflite) through dart:ffi
-
Updated
Dec 8, 2020 - Dart
Improve this page
Add a description, image, and links to the ffi topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the ffi topic, visit your repo's landing page and select "manage topics."
Just thinking that for the guide it would be nice to add a table to the
#[pyproto]section listing all the dunder methods that can be implemented and the protocols they are a part of (e.g.__int__->PyNumberProtocoletc.)