• Stars
    star
    79
  • Rank 394,111 (Top 8 %)
  • Language
    Go
  • Created about 12 years ago
  • Updated over 8 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Unicode transliterator for #golang

Unicode transliterator (also known as unidecode) for Go

Use the following command to install gounidecode

go get -u github.com/fiam/gounidecode/unidecode

Example usage

package main

import (
    "fmt"
    "github.com/fiam/gounidecode/unidecode"
)

func main() {
    fmt.Println(Unidecode("áéíóú")) // Will print aeiou
    fmt.Println(Unidecode("\u5317\u4EB0")) // Will print Bei Jing
    fmt.Println(Unidecode("Κνωσός")) // Will print Knosos
}

More Repositories

1

readable

C library for extracting interesting content from web pages
C
28
star
2

geonames

Models for using the geonames database with Django
27
star
3

arm-none-eabi-gcc

GitHub action for installing arm-none-eabi-gcc
TypeScript
26
star
4

wapi

Web Api Framework for Django
Python
15
star
5

RestClient

Objective-C ReST client
Objective-C
14
star
6

blangoblog

Blango is a blogging engine built on top of Django
Python
11
star
7

geocoding

django-geocoding uses the Google Maps API as well as django-geonames for geocoding addresses and reverse geocoding coordinates
11
star
8

oauthsp

Service Provider OAuth implementation on top of Django
8
star
9

msp-tool

Command line tool for streamlining MSP-based FC development
Go
7
star
10

max7456tool

Command line tool for managing MAX7456 character sets
Go
7
star
11

idf_wmonitor_lib

ESP32 host support for idf_wmonitor (like idf_monitor, but works over the network)
C
6
star
12

oauthconsumer

Fork from the official OAuthConsumer implementation, adding some goodies for easier token managament
4
star
13

dboembed

django-dboembed is an oembed client implementation which stores its results in the database
4
star
14

phash-rs

pHash bindings for Rust
C++
3
star
15

bundles

Django-bundles is a set of tools for building, linting and optimizing CSS and JS bundles using YUI tools.
2
star
16

macapptool

Command line tool for manipulating macOS app bundles (fix incorrect bundles, signatures, notarisation, etc...)
Go
2
star
17

wldb

Wear Levelling DB - A small key-value database for embedded devices
C
2
star
18

stringutil

String utilities for Go (golang)
Go
1
star
19

idf_wmonitor

Computer side client for idf_wmonitor (like idf_monitor, but works over the network)
Go
1
star