Compare commits

..

No commits in common. "main" and "v1.1.1" have entirely different histories.
main ... v1.1.1

2 changed files with 7 additions and 7 deletions

View File

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2022 Minoplhy
Copyright (c) 2021 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-images-api
# DuckDuckGo-image-api
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 .
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 .
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)
}
```
```