Skip to content

Commit a697220

Browse files
committed
move to github.com/gotray/go-python
1 parent a6258cd commit a697220

File tree

10 files changed

+21
-21
lines changed

10 files changed

+21
-21
lines changed

README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# go-python: Write Python in Go - The most intuitive Python wrapper for Golang
22

3-
[![Build Status](https://github.com/cpunion/go-python/actions/workflows/go.yml/badge.svg)](https://github.com/cpunion/go-python/actions/workflows/go.yml)
3+
[![Build Status](https://github.com/gotray/got/actions/workflows/go.yml/badge.svg)](https://github.com/gotray/got/actions/workflows/go.yml)
44
[![Coverage Status](https://codecov.io/github/cpunion/go-python/graph/badge.svg?token=DLVMvjAOFM)](https://codecov.io/github/cpunion/go-python)
55
![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/cpunion/go-python)
66
[![GitHub commits](https://badgen.net/github/commits/cpunion/go-python)](https://GitHub.com/Naereen/cpunion/go-python/commit/)
7-
[![GitHub release](https://img.shields.io/github/v/tag/cpunion/go-python.svg?label=release)](https://github.com/cpunion/go-python/releases)
8-
[![Go Report Card](https://goreportcard.com/badge/github.com/cpunion/go-python)](https://goreportcard.com/report/github.com/cpunion/go-python)
9-
[![Go Reference](https://pkg.go.dev/badge/github.com/cpunion/go-python.svg)](https://pkg.go.dev/github.com/cpunion/go-python)
7+
[![GitHub release](https://img.shields.io/github/v/tag/cpunion/go-python.svg?label=release)](https://github.com/gotray/got/releases)
8+
[![Go Report Card](https://goreportcard.com/badge/github.com/gotray/got)](https://goreportcard.com/report/github.com/gotray/got)
9+
[![Go Reference](https://pkg.go.dev/badge/github.com/gotray/got.svg)](https://pkg.go.dev/github.com/gotray/got)
1010

1111
## Goal
1212

@@ -57,7 +57,7 @@ See the [examples](demo).
5757
```go
5858
package main
5959

60-
import . "github.com/cpunion/go-python"
60+
import . "github.com/gotray/got"
6161

6262
func main() {
6363
Initialize()
@@ -75,7 +75,7 @@ func main() {
7575
```go
7676
package main
7777

78-
import . "github.com/cpunion/go-python"
78+
import . "github.com/gotray/got"
7979

8080
type plt struct {
8181
Module
@@ -113,7 +113,7 @@ package foo
113113
import (
114114
"fmt"
115115

116-
. "github.com/cpunion/go-python"
116+
. "github.com/gotray/got"
117117
)
118118

119119
type Point struct {
@@ -165,8 +165,8 @@ package main
165165
import (
166166
"fmt"
167167

168-
. "github.com/cpunion/go-python"
169-
"github.com/cpunion/go-python/demo/module/foo"
168+
. "github.com/gotray/got"
169+
"github.com/gotray/got/demo/module/foo"
170170
)
171171

172172
func main() {
@@ -235,7 +235,7 @@ import (
235235
"fmt"
236236
"os"
237237

238-
. "github.com/cpunion/go-python"
238+
. "github.com/gotray/got"
239239
)
240240

241241
/*

demo/autoderef/autoderef.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"fmt"
55
"runtime"
66

7-
. "github.com/cpunion/go-python"
8-
pymath "github.com/cpunion/go-python/math"
7+
. "github.com/gotray/got"
8+
pymath "github.com/gotray/got/math"
99
)
1010

1111
func main() {

demo/gradio/gradio.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"os"
66

7-
. "github.com/cpunion/go-python"
7+
. "github.com/gotray/got"
88
)
99

1010
/*

demo/module/foo/foo.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package foo
33
import (
44
"fmt"
55

6-
. "github.com/cpunion/go-python"
6+
. "github.com/gotray/got"
77
)
88

99
type Point struct {

demo/module/module.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package main
33
import (
44
"fmt"
55

6-
. "github.com/cpunion/go-python"
7-
"github.com/cpunion/go-python/demo/module/foo"
6+
. "github.com/gotray/got"
7+
"github.com/gotray/got/demo/module/foo"
88
)
99

1010
func main() {

demo/plot/plot.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package main
22

3-
import . "github.com/cpunion/go-python"
3+
import . "github.com/gotray/got"
44

55
func main() {
66
Initialize()

demo/plot2/plot2.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package main
22

3-
import . "github.com/cpunion/go-python"
3+
import . "github.com/gotray/got"
44

55
type plt struct {
66
Module

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/cpunion/go-python
1+
module github.com/gotray/got
22

33
go 1.21
44

math/math.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package math
22

33
import (
4-
gp "github.com/cpunion/go-python"
4+
gp "github.com/gotray/got"
55
)
66

77
var math_ gp.Module

math/math_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package math
33
import (
44
"testing"
55

6-
gp "github.com/cpunion/go-python"
6+
gp "github.com/gotray/got"
77
)
88

99
func TestSqrt(t *testing.T) {

0 commit comments

Comments
 (0)