ffi
Here are 447 public repositories matching this topic...
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})";
}
-
Updated
Sep 7, 2020 - Python
-
Updated
Dec 14, 2020 - C
-
Updated
Jul 12, 2020 - Rust
-
Updated
Oct 21, 2020 - PHP
-
Updated
Jun 10, 2020 - PHP
-
Updated
Oct 2, 2020 - Python
-
Updated
Nov 24, 2019 - Haskell
The jvm-batching package offers some java interfaces that need to be public.
We could just refer people to the inline-java github repo to build the jar, but probably it is going to be easier to manage the Java dependencies if we upload the package to maven central.
We need to write the metadata and the instructions to build and upload the jar.
-
Updated
Nov 8, 2020 - Rust
-
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.)