We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed264d5 commit c857c87Copy full SHA for c857c87
README.md
@@ -10,6 +10,9 @@ import "github.com/codingpot/paperswithcode-go"
10
```
11
12
```go
13
-APIToken := "<your-api-token>" // from https://paperswithcode.com/accounts/generate_api_token
14
-c := paperswithcode_go.NewClient(paperswithcode_go.WithAPIToken(token))
+c := paperswithcode_go.NewClient()
+papers, _ := c.PaperList(paperswithcode_go.PaperListParamsDefault())
15
+gan, _ := c.PaperGet(paperswithcode_go.GetPaperIDFromPaperTitle("Generative Adversarial Networks"))
16
17
+
18
+See go doc for reference.
0 commit comments