Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 470 Bytes

README.md

File metadata and controls

27 lines (20 loc) · 470 Bytes

homoglyphr

Confusing domain name character generator.

A simple homoglyph generation library for gophers focused on registrable domain name characters.

Installation

go get github.com/picatz/homoglyphr

Example Usage

package main

import (
  "fmt"
  "github.com/picatz/homoglyphr"
)

func main() {
  for similar := range homoglyphr.StreamAllRelatedCharacters("g") {
    fmt.Println(similar)
  }
}