https://github.com/zoonman/gravatar
Creates Gravatar from email using GoLang
https://github.com/zoonman/gravatar
go golang gravatar gravatar-api gravatar-image gravatar-library
Last synced: about 1 year ago
JSON representation
Creates Gravatar from email using GoLang
- Host: GitHub
- URL: https://github.com/zoonman/gravatar
- Owner: zoonman
- License: bsd-3-clause
- Created: 2017-11-24T07:03:21.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-04T16:52:48.000Z (over 8 years ago)
- Last Synced: 2024-04-15T09:17:05.493Z (about 2 years ago)
- Topics: go, golang, gravatar, gravatar-api, gravatar-image, gravatar-library
- Language: Go
- Size: 3.91 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Gravatar Avatar generator
Generates Gravatar picture url from a given email with specified size
## Usage
```go
import (
"github.com/zoonman/gravatar"
"log"
)
func main ()
{
log.Print(gravatar.Avatar("philipp@zoonman.com", 256))
}
```