#
ffi
Here are 461 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
Jan 29, 2021 - C
Embed C++ directly inside your rust code!
-
Updated
Jan 27, 2021 - Rust
PHP 中文工具包,支持汉字转拼音、拼音分词、简繁互转、数字、金额大写;QQ群:17916227
-
Updated
Jan 26, 2021 - PHP
-
Updated
Jun 10, 2020 - 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
Jan 19, 2021 - Python
Use snippets of Rust inline in your Haskell programs
-
Updated
Nov 24, 2019 - Haskell
Rust binding and tools for emacs-module (Emacs's dynamic module support)
-
Updated
Jan 25, 2021 - Rust
An experimental game 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
May 18, 2020 - Lua
-
Updated
Oct 19, 2020 - Python
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.)