Compare commits

...

4 Commits

Author SHA1 Message Date
64457ac31d
License : 2022 2022-01-31 00:43:14 +07:00
2cc2b811ed syntax highlighting 2021-10-28 01:20:03 +07:00
8bc2c1808d another **images**-api 2021-10-27 21:40:33 +07:00
d8f1f37a29 **images**-api 2021-10-27 21:39:14 +07:00
2 changed files with 7 additions and 7 deletions

View File

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2021 Minoplhy
Copyright (c) 2022 Minoplhy
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View File

@ -1,6 +1,6 @@
# DuckDuckGo-image-api
# DuckDuckGo-images-api
This project is Go adaptation of Python3 forked [duckduckgo-image-api](https://github.com/joeyism/duckduckgo-images-api) . I made this modules because this module will be need in my future project .
This project is Go adaptation of Python3 forked [duckduckgo-images-api](https://github.com/joeyism/duckduckgo-images-api) . I made this modules because this module will be need in my future project .
Contribution are always welcome
@ -11,7 +11,7 @@ Import
# Example Use Cases
#### Get Search Results
```
```go
func main() {
hunsen := goduckgo.Search(goduckgo.Query{Keyword: "duck"})
fmt.Print(hunsen.Results)
@ -19,7 +19,7 @@ func main() {
```
#### Get Search Result Image
```
```go
func main() {
hunsen := goduckgo.Search(goduckgo.Query{Keyword: "duck"})
for _, somtam := range hunsen.Results {
@ -30,10 +30,10 @@ func main() {
}
```
#### Specific P and S
```
```go
func main() {
hunsen := goduckgo.Search(goduckgo.Query{Keyword: "duck", P: "1", S: "200"})
fmt.Print(hunsen.Results)
}
```
```