Instance variables
Open
- Dominant language
- Go
- Stars
- 1k
- Forks
- 105
- PR merge metrics
- No merged PRs in 30d
Description
Is there a way to access instance variables from Python.
For example, say I have go struct:
```go
type Point struct {
X int
Y int
}
```
Is there a way to access struct members in python:
```python
print(point.X)
# or
print(point.x)
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.