turtle alternatives and similar packages
Based on the "Miscellaneous" category.
Alternatively, view turtle alternatives based on common mentions on social networks and blogs.
-
go-restful-api
An idiomatic Go REST API starter kit (boilerplate) following the SOLID principles and Clean Architecture -
ghorg
Quickly clone or backup an entire org/users repositories into one directory - Supports GitHub, GitLab, Bitbucket, and more ๐๐ฅ -
IOC-golang
IOC-golang is a powerful golang dependency injection framework that provides a complete implementation of IoC containers. -
go-starter
An opinionated production-ready SQL-/Swagger-first RESTful JSON API written in Go, highly integrated with VSCode DevContainers by allaboutapps. -
container
A lightweight yet powerful IoC dependency injection container for the Go programming language -
gountries
Gountries provides: Countries (ISO-3166-1), Country Subdivisions(ISO-3166-2), Currencies (ISO 4217), Geo Coordinates(ISO-6709) as well as translations, country borders and other stuff exposed as struct data. -
countries
Countries - ISO-639, ISO-3166 countries codes with subdivisions and names, ISO-4217 currency designators, ITU-T E.164 IDD phone codes, countries capitals, UN M.49 codes, IANA ccTLD countries domains, FIPS, IOC/NOC and FIFA codes, VERY VERY FAST, compatible with Databases/JSON/BSON/GOB/XML/CSV, Emoji countries flags and currencies, Unicode CLDR.
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of turtle or a related project?
Popular Comparisons
README
turtle
Emojis for Go ๐๐ข๐
Reference
Follow this link to view the reference documentation: GoDoc Reference ๐
Installation
Library
To install the turtle library run:
go get github.com/hackebrot/turtle
CLI app
If you would also like to use the turtle CLI app run:
go get github.com/hackebrot/turtle/cmd/turtle
See the turtle CLI README for more information.
Usage
Emoji lookup
turtle.Emojis
is a map which contains all emojis available in turtle.
You can use it to look up emoji by their name.
package main
import (
"fmt"
"os"
"github.com/hackebrot/turtle"
)
func main() {
name := "turtle"
emoji, ok := turtle.Emojis[name]
if !ok {
fmt.Fprintf(os.Stderr, "no emoji found for name: %v\n", name)
os.Exit(1)
}
fmt.Printf("Name: %q\n", emoji.Name)
fmt.Printf("Char: %s\n", emoji.Char)
fmt.Printf("Category: %q\n", emoji.Category)
fmt.Printf("Keywords: %q\n", emoji.Keywords)
}
Name: "turtle"
Char: ๐ข
Category: "animals_and_nature"
Keywords: ["animal" "slow" "nature" "tortoise"]
Search
Use Search()
to find all emojis with a name that contains the search string.
package main
import (
"fmt"
"os"
"github.com/hackebrot/turtle"
)
func main() {
s := "computer"
emojis := turtle.Search(s)
if emojis == nil {
fmt.Fprintf(os.Stderr, "no emojis found for search: %v\n", s)
os.Exit(1)
}
fmt.Printf("%s: %s\n", s, emojis)
}
computer: [๐ป ๐ฑ ๐ฅ ]
Category
Use Category()
to find all emojis of the specified category.
package main
import (
"fmt"
"os"
"github.com/hackebrot/turtle"
)
func main() {
c := "travel_and_places"
emojis := turtle.Category(c)
if emojis == nil {
fmt.Fprintf(os.Stderr, "no emojis found for category: %v\n", c)
os.Exit(1)
}
fmt.Printf("%s: %s\n", c, emojis)
}
travel_and_places: [๐ก โ๏ธ ๐ ]
Keyword
Use Keyword()
to find all emojis by a keyword.
package main
import (
"fmt"
"os"
"github.com/hackebrot/turtle"
)
func main() {
k := "happy"
emojis := turtle.Keyword(k)
if emojis == nil {
fmt.Fprintf(os.Stderr, "no emoji found for keyword: %v\n", k)
os.Exit(1)
}
fmt.Printf("%s: %s\n", k, emojis)
}
happy: [๐ ๐ ๐ ๐ ]
Emojis
Emoji names, categories and keywords are based on the fantastic muan/emojilib keyword library ๐
At this point, the turtle project supports the emojis that are also available on GitHub. See the GitHub REST API documentation for more information.
Issues
If you encounter any problems, please file an issue along with a detailed description.
Contributing
Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given.
License
Distributed under the terms of the MIT license, turtle is free and open source software.
*Note that all licence references and agreements mentioned in the turtle README section above
are relevant to that project's source code only.