We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94609dc commit f38ea61Copy full SHA for f38ea61
README.md
@@ -6,6 +6,31 @@
6
- Typed Python objects.
7
- Most intuitive and easy to use.
8
9
+## Roadmap
10
+
11
+- [x] Call Python in Go.
12
+ - [x] Basic types.
13
+ - [x] Integers.
14
+ - [x] Floats.
15
+ - [x] Strings.
16
+ - [x] Bytes.
17
+ - [x] Booleans.
18
+ - [x] Lists.
19
+ - [x] Tuples.
20
+ - [x] Dicts.
21
+ - [x] Modules.
22
+ - [ ] Functions
23
+ - [x] Keyword arguments.
24
+ - [x] Mapping arguments and return values.
25
+ - [ ] Default arguments.
26
+- [ ] Call Go in Python.
27
+ - [x] Export Go functions, struct types to Python.
28
+ - [ ] Auto export field types if it's a struct.
29
+ - [ ] Auto generate function signatures (used by gradio).
30
+- [x] Basic tests on common used libraries.
31
+ - [x] matplotlib
32
+ - [x] gradio
33
34
## Examples
35
36
See the [examples](_demo).
0 commit comments