File: README.md

package info (click to toggle)
golang-github-corpix-uarand 0.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 320 kB
  • sloc: python: 55; makefile: 27; sh: 7
file content (38 lines) | stat: -rw-r--r-- 584 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
uarand
----------------

[![Build Status](https://travis-ci.org/corpix/uarand.svg?branch=master)](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/)