https://github.com/corpix/uarand
Random user-agent generator for Go
https://github.com/corpix/uarand
faker go-packages golang user-agent
Last synced: 5 months ago
JSON representation
Random user-agent generator for Go
- Host: GitHub
- URL: https://github.com/corpix/uarand
- Owner: corpix
- License: unlicense
- Created: 2017-02-21T20:24:35.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-05-17T23:29:40.000Z (about 4 years ago)
- Last Synced: 2025-09-16T16:02:28.811Z (10 months ago)
- Topics: faker, go-packages, golang, user-agent
- Language: Go
- Homepage:
- Size: 224 KB
- Stars: 128
- Watchers: 2
- Forks: 18
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
uarand
----------------
[](https://travis-ci.org/corpix/uarand)
Random user-agent producer for go.
## Example
``` go
package main
import (
"fmt"
"github.com/corpix/uarand"
)
func main() {
fmt.Println(uarand.GetRandom())
}
```
Save it to `snippet.go` and run:
``` shell
go run snippet.go
```
Which should produce something similar to:
``` text
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36
```
## License
[Unlicense](https://unlicense.org/)