Go Open-Source-Bibliotheken Übersicht
Sammelt einige Open-Source-Go-Drittanbieter-Bibliotheken und Frameworks, kategorisiert sie für einfaches Durchsuchen. Beiträge durch PRs zur Hinzufügung neuer Projekte sind willkommen.
TIP
Die Reihenfolge stellt keine Wertung dar. Ob etwas gut zu verwenden ist, hängt von der tatsächlichen Erfahrung ab.
Web-Frameworks
| Name | Beschreibung | Repository |
|---|---|---|
| gin | Das klassischste Web-Framework | https://github.com/gin-gonic/gin |
| beego | Von einem chinesischen Entwickler erstelltes Web-Framework | https://github.com/beego/beego |
| iris | Behauptet das schnellste Web-Framework zu sein | https://github.com/kataras/iris |
| echo | Minimalistisches, leistungsstarkes Web-Framework | https://github.com/labstack/echo |
| goji | Einfaches Web-Framework | https://github.com/zenazn/goji |
| revel | Hochverfügbares Full-Stack-Web-Framework | https://github.com/revel/revel |
| buffalo | Web-Framework zum einfachen Erstellen von Full-Stack-Projekten | https://github.com/gobuffalo/buffalo |
| hertz | Microservice-HTTP-Framework mit hoher Leistung und starker Erweiterbarkeit (von ByteDance Open Source) | https://github.com/cloudwego/hertz |
| dotweb | Ein einfaches, leichtgewichtiges Web-Framework | https://github.com/devfeel/dotweb |
| fiber | Node.js Express-ähnliches Web-Framework | https://github.com/gofiber/fiber |
ORM
| Name | Beschreibung | Repository |
|---|---|---|
| gorm | Entwicklerfreundliche ORM-Bibliothek | https://github.com/go-gorm/gorm |
| xorm | Einfaches, leistungsstarkes ORM | https://gitea.com/xorm/xorm |
| ent | Von Facebook Open Source bereitgestelltes ORM | https://github.com/ent/ent |
| sqlx | Mächtige Erweiterung der sql-Bibliothek | https://github.com/jmoiron/sqlx |
| beego/orm | Mitgeliefertes ORM von beego | https://github.com/astaxie/beego/tree/master/orm |
| rel | Erweiterbares, modernes ORM | https://github.com/go-rel/rel |
| bun | SQL-orientiertes ORM | https://github.com/uptrace/bun |
Microservice-Frameworks
| Name | Beschreibung | Repository |
|---|---|---|
| kratos | Cloud-natives Microservice-Framework (Bilibili Open Source) | https://github.com/go-kratos/kratos |
| go-kit | Eine Toolkit-Bibliothek für Microservice-Entwicklung | https://github.com/go-kit/kit |
| kitex | Hochleistungsfähiges und erweiterbares Microservice-Framework (ByteDance Open Source) | https://github.com/cloudwego/kitex |
| go-zero | Cloud-natives Microservice-Framework (Qiniu Cloud Open Source) | https://github.com/zeromicro/go-zero |
| go-micro | Ein ausländisches Microservice-Framework | https://github.com/go-micro/go-micro |
| kite | Microservice-Framework (lange nicht aktualisiert) | https://github.com/koding/kite |
| dubbo-go | Java Dubbo Implementierung in Go (Alibaba Open Source) | https://github.com/apache/dubbo-go |
| tarsgo | Tars Implementierung in Go (Tencent Open Source) | https://github.com/TarsCloud/TarsGo |
| juptiers | Governance-orientiertes Microservice-Framework (Douyu Open Source) | https://github.com/douyu/jupiter |
| redsync | Redis verteilte Sperre | https://github.com/go-redsync/redsync |
Osterei
Douyus jupiter ist der Name von Zeus, dem Göttervater, während Bilibilis kratos nach dem Kriegsgott Kratos benannt ist. Kratos tötete später Zeus, den Göttervater.
Logging-Komponenten
| Name | Beschreibung | Repository |
|---|---|---|
| logrus | Strukturierte Logging-Bibliothek | https://github.com/sirupsen/logrus |
| zap | Von Uber Open Source bereitgestellte Hochleistungs-Logging-Bibliothek | https://github.com/uber-go/zap |
| glog | Graduiertes Logging | https://github.com/golang/glog |
| zerolog | JSON-Logging mit null Speicherallokation | https://github.com/rs/zerolog |
| apex/log | Strukturierte Logging-Bibliothek | https://github.com/apex/log |
| lumberjack | Log-Rotations-Bibliothek, unterstützt Größenrotation, Datumsrotation, Dateikomprimierung | https://github.com/natefinch/lumberjack |
Test-Komponenten
| Name | Beschreibung | Repository |
|---|---|---|
| testify | Das beliebteste Test-Toolkit | https://github.com/stretchr/testify |
| ginkgo | Modernes Test-Framework | https://github.com/onsi/ginkgo |
| ramsql | Speicherbasierter SQL-Motor, hauptsächlich für SQL-Unit-Tests | https://github.com/proullon/ramsql |
| go-sqlmock | SQL Mock für Tests | https://github.com/DATA-DOG/go-sqlmock |
| goconvey | Visuelles Testen im Browser | https://github.com/smartystreets/goconvey |
| go-stress-testing | Lasttest-Tool | https://github.com/link1st/go-stress-testing |
| xgo | Go Stubbing-Test-Framework, durch Kompilierzeit-Code-Rewriting implementiert | https://github.com/xhd2015/xgo |
| gomonkey | Go Stubbing-Test-Framework, durch Modifikation der Funktionsadresse implementiert | https://github.com/agiledragon/gomonkey |
Datenverarbeitung
| Name | Beschreibung | Repository |
|---|---|---|
| mapstructure | Map zu Struct Konvertierung und umgekehrt | https://github.com/mitchellh/mapstructure |
| cast | Bequeme Datentyp-Konvertierung | https://github.com/spf13/cast |
| deepcopy | Tiefenkopie | https://github.com/mohae/deepcopy |
| copier | Kopieren von Werten zwischen gleichnamigen Feldern in Structs | https://github.com/jinzhu/copier |
| go-pinyin | Chinesische Zeichen zu Pinyin | https://github.com/mozillazg/go-pinyin |
| go-streams | Strombasierte Datenverarbeitung | https://github.com/reugn/go-streams |
| stream | Strombasierte Verarbeitung | https://github.com/xyctruth/stream |
| go-humanize | Daten in menschenlesbare Formate umwandeln | https://github.com/dustin/go-humanize |
| uniseg | Unicode-Textsegmentierung, Zeilenumbruch und String-Breitenberechnung in Go | https://github.com/rivo/uniseg |
Datenvalidierung
| Name | Beschreibung | Repository |
|---|---|---|
| go-playground/validator/v10 | Datenvalidierer | https://github.com/go-playground/validator |
| go-cmp | Von Google Open Source bereitgestellte Bibliothek zum Vergleichen von Werten | https://github.com/google/go-cmp |
| ozzo-validation | Regelbasierte Datenvalidierungsbibliothek | https://github.com/go-ozzo/ozzo-validation |
| go-tagexpr | Struct-Tag-Validierungsbibliothek | https://github.com/bytedance/go-tagexpr |
Datenstrukturen
| Name | Beschreibung | Repository |
|---|---|---|
| gods | Implementierung gängiger Datenstrukturen | https://github.com/emirpasic/gods |
| go-datastructures | Implementierung gängiger Datenstrukturen | https://github.com/Workiva/go-datastructures |
| biset | Bitsets-Implementierung in Go | https://github.com/bits-and-blooms/bitset |
| bloom | Bloom-Filters-Implementierung in Go | https://github.com/bits-and-blooms/bloom |
| deque | Hochleistungsfähige Double-Ended-Queue-Implementierung | https://github.com/edwingeng/deque |
| concurrent-map | Nebenläufigkeitssichere Sharded-Map-Implementierung | https://github.com/orcaman/concurrent-map |
| samber/lo | Lodash-ähnliche Datenverarbeitungsbibliothek, unterstützt Generics | https://github.com/samber/lo |
| google/btree | Von Google implementierte BTree-Bibliothek, unterstützt Generics | https://github.com/google/btree |
| gostl | C++ STL-ähnliche Datenstrukturbibliothek | https://github.com/liyue201/gostl |
Mathematische Berechnungen
| Name | Beschreibung | Repository |
|---|---|---|
| gonum | Ähnlich wie numpy | https://github.com/gonum/gonum |
| decimal | Hochpräzise Fließkomma-Operationsbibliothek | https://github.com/shopspring/decimal |
| crunch | Eine Bibliothek zur Vereinfachung von Byte- und Bitoperationen | https://github.com/superwhiskers/crunch |
| math-engine | Bibliothek für mathematischen Ausdrucksparser und -berechnung | https://github.com/dengsgo/math-engine |
Template-Engines
| Name | Beschreibung | Repository |
|---|---|---|
| pongo2 | Django-ähnliche Template-Engine | https://github.com/flosch/pongo2 |
| ace | HTML-Template-Engine | https://github.com/yosssi/ace |
| mustache | Mustache-Implementierung in Go | https://github.com/hoisie/mustache |
| hero | Leistungsstarke, schnelle Template-Engine | https://github.com/shiyanhui/hero |
| quictemplate | Der Name sagt es alles, hochleistungsfähige Template-Engine | https://github.com/valyala/quicktemplate |
| amber | Von HAML und Jade inspirierte Template-Engine | https://github.com/eknkc/amber |
Cache-Komponenten
| Name | Beschreibung | Repository |
|---|---|---|
| golang-lru | Thread-sicherer LRU und LRU 2Q Cache | https://github.com/hashicorp/golang-lru |
| ttlcache | Speicherbasierter Cache, unterstützt TTL und Generics | https://github.com/jellydator/ttlcache |
| gocache | Cache-Middleware-Manager | https://github.com/eko/gocache |
| go-cache | Speicherbasierter Cache, geeignet für Einzelanwendungen, unterstützt TTL | https://github.com/patrickmn/go-cache |
| ristretto | Hochleistungsfähiger Speicher-Cache | https://github.com/dgraph-io/ristretto |
| bigcache | Effizienter Cache für große Schlüssel basierend auf Speicher | https://github.com/allegro/bigcache |
Datenbanken & Treiber
| Name | Beschreibung | Repository |
|---|---|---|
| modernc.org/sqlite | SQLite-Treiber, rein in Go geschrieben, benötigt kein CGO | https://gitlab.com/cznic/sqlite |
| mattn/go-sqlite3 | SQLite-Treiber, benötigt CGO | https://github.com/mattn/go-sqlite3 |
| denisenkom/go-mssqldb | SQLServer-Treiber, kaum noch Updates, Microsoft-Version empfohlen | https://github.com/denisenkom/go-mssqldb |
| microsoft/go-mssqldb | SQLServer-Treiber, neuer von Microsoft gepflegter Fork | https://github.com/microsoft/go-mssqldb |
| pgx | PostgreSQL-Treiber | https://github.com/jackc/pgx/ |
| mysql | MySQL-Treiber | https://github.com/go-sql-driver/mysql |
| oci-go-sdk | Offizieller Oracle-Treiber | https://github.com/oracle/oci-go-sdk |
| go-ora | Oracle-Treiber, rein in Go geschrieben | https://github.com/sijms/go-ora |
| badger | Eingebettete KV-Datenbank, basierend auf LSM | https://github.com/dgraph-io/badger |
| boltdb | Eingebettete KV-Datenbank, basierend auf B+Tree | https://github.com/boltdb/bolt |
| goleveldb | Go-Implementierung von LevelDB | https://github.com/syndtr/goleveldb |
| qmgo | Von Qiniu Cloud Open Source bereitgestellte MongoDB-Operationsbibliothek | https://github.com/qiniu/qmgo |
| mongo-go-driver | Offizieller Go-Treiber für MongoDB | https://github.com/mongodb/mongo-go-driver |
| rqlite | Leichtgewichtige verteilte relationale Datenbank basierend auf SQLite | https://github.com/rqlite/rqlite/ |
| go-mysql | Eine mächtige MySQL-Tool-Sammlung | https://github.com/go-mysql-org/go-mysql |
| go-mysql-elasticsearch | Tool zur Synchronisation von MySQL-Daten nach Elasticsearch | https://github.com/go-mysql-org/go-mysql-elasticsearch |
| gofound | Standalone-Volltextsuchmaschine für Milliarden von Dokumenten, | https://github.com/sea-team/gofound |
| bleve | Volltextsuch-Bibliothek | https://github.com/blevesearch/bleve |
Serialisierung
| Name | Beschreibung | Repository |
|---|---|---|
| go-ini | INI-Datei-Serialisierungsbibliothek | https://github.com/go-ini/ini |
| sonic | Von ByteDance Open Source bereitgestellte Hochleistungs-JSON-Serialisierungsbibliothek | https://github.com/bytedance/sonic |
| easyjson | Schnelle JSON-Serialisierungsbibliothek | https://github.com/mailru/easyjson |
| gjson | Schneller JSON-Schlüssel-Wert-Zugriff, keine traditionelle Serialisierungsbibliothek | https://github.com/tidwall/gjson |
| go-yaml | YAML-Serialisierungsbibliothek | https://github.com/go-yaml/yaml |
| go-toml | TOML-Serialisierungsbibliothek | https://github.com/pelletier/go-toml |
| properties | Properties-Serialisierungsbibliothek | https://github.com/magiconair/properties |
| viper | Unterstützt Serialisierung mehrerer Datenformate, auch Konfigurationsmanager | https://github.com/spf13/viper |
| configor | Vom Gorm-Autor geschriebener Multi-Format-Serialisierer und Konfigurationsmanager | https://github.com/jinzhu/configor |
Kommandozeile
| Name | Beschreibung | Repository |
|---|---|---|
| pflag | POSIX/GNU-ähnliches Flag-Paket | https://github.com/spf13/pflag |
| go-flags | Kommandozeilenparameter-Parser | https://github.com/jessevdk/go-flags |
| cobra | Modernes CLI-Anwendungs-Scaffold | https://github.com/spf13/cobra |
| dimiro1/banner | Ästhetische Banner-Erstellungsbibliothek | https://github.com/dimiro1/banner |
| go-pretty | Schöne CLI-Tabellen, Text und Fortschrittsanzeigen | https://github.com/jedib0t/go-pretty |
| progressbar | Thread-sichere CLI-Fortschrittsanzeige | https://github.com/schollz/progressbar |
| go-ansi | Portables ANSI-Escape-Sequenz-Dienstprogramm für Windows in Go | https://github.com/k0kubun/go-ansi |
| go-isatty | Bibliothek zur TTY-Erkennung | https://github.com/mattn/go-isatty |
Komprimierung & Dekomprimierung
| Name | Beschreibung | Repository |
|---|---|---|
| klauspost/compress | Optimierte Version der compress-Standardbibliothek | https://github.com/klauspost/compress |
| alexmullins/zip | Fork der archive/zip-Standardbibliothek, unterstützt Passwort | https://github.com/alexmullins/zip |
| mholt/archiver | Komprimierungs-/Dekomprimierungstoolbibliothek für viele Formate (sehr empfohlen) | https://github.com/mholt/archiver |
| go-car | CAR-Archivdatei-Implementierung in Go | https://github.com/ipld/go-car |
| go-unarr | Eine Komprimierungs-/Dekomprimierungsbibliothek | https://github.com/gen2brain/go-unarr |
| xz | Reine Golang-Bibliothek zum Lesen und Schreiben von XZ-komprimierten Dateien | https://github.com/ulikunitz/xz |
Datum & Zeit
| Name | Beschreibung | Repository |
|---|---|---|
| carbon | Datums- und Zeitverarbeitungsbibliothek | https://github.com/golang-module/carbon |
| robfig/cron | Cron-Job-Bibliothek | https://pkg.go.dev/github.com/robfig/cron/v3 |
| gron | Cron-Job-Bibliothek | https://github.com/roylee0704/gron |
| jobrunner | Asynchrones Cron-Job-Framework | https://github.com/bamzi/jobrunner |
| dataparse | Zeitstrings ohne Formatangabe parsen | https://github.com/araddon/dateparse |
| jinzhu/now | Datums-Tool-Bibliothek | https://github.com/jinzhu/now |
Dependency Injection
| Name | Beschreibung | Repository |
|---|---|---|
| dig | Von Uber Open Source bereitgestellte DI-Bibliothek, basierend auf Reflexion | https://darjun.github.io/2020/02/22/godailylib/dig/ |
| wire | Von Google Open Source bereitgestellte DI-Bibliothek, basierend auf Codegenerierung | https://github.com/google/wire |
| inject | Dependency-Injection-Tool | https://github.com/codegangsta/inject |
| di | Dependency-Injection-Container | https://github.com/sarulabs/di |
Geolokalisierung
| Name | Beschreibung | Repository |
|---|---|---|
| geoip2-golang | IP zu Geoinformationen | https://github.com/oschwald/geoip2-golang |
| ip2location-go | IP zu Geoinformationen | https://github.com/ip2location/ip2location-go |
Web-Crawling-Frameworks
| Name | Beschreibung | Repository |
|---|---|---|
| colly | Einfaches, mächtiges Crawler-Framework | https://github.com/gocolly/colly |
| goquery | Ähnlich wie j-thing | https://github.com/PuerkitoBio/goquery |
Netzwerk-Tools
| Name | Beschreibung | Repository |
|---|---|---|
| gentleman | Plugin-gesteuerter, erweiterbarer HTTP-Client | https://github.com/h2non/gentleman |
| resty | RESTful HTTP-Client | https://pkg.go.dev/github.com/go-resty/resty/v2 |
| gopeed | Moderner Download-Manager für alle Plattformen, basierend auf Go und Flutter | https://github.com/GopeedLab/gopeed |
E-Mail
| Name | Beschreibung | Repository |
|---|---|---|
| jordan-wright/email | Robuste, flexible E-Mail-Versand-Bibliothek | https://github.com/jordan-wright/email |
| gomail | E-Mail-Versand-Bibliothek | https://github.com/go-gomail/gomail |
| go-simple-mail | Einfache E-Mail-Versand-Bibliothek | https://github.com/xhit/go-simple-mail |
| go-mail | Einfach zu verwendende, umfassende E-Mail-Versand-Bibliothek | https://github.com/wneessen/go-mail |
| email-verifier | E-Mail-Validierung ohne Versand | https://github.com/AfterShip/email-verifier |
| maddy | Kombinierbarer Mailserver | https://github.com/foxcpp/maddy |
| mox | Vollständig Open Source, gut gewartet, selbst gehosteter Mailserver | https://github.com/mjl-/mox |
| hermes | E-Mail-Vorlagen-Generator | https://github.com/matcornic/hermes |
| listmonk | Hochleistungsfähig, selbst gehostet, visuelle Mailinglistenverwaltung | https://github.com/knadh/listmonk |
| go-smtp | In Go geschriebener SMTP-Client und -Server | https://github.com/emersion/go-smtp |
| go-imap | In Go geschriebener IMAP-Client und -Server | https://github.com/emersion/go-imap |
Spielentwicklung
| Name | Beschreibung | Repository |
|---|---|---|
| ebitengine | Eine super einfache 2D-Spiel-Engine | https://github.com/hajimehoshi/ebiten |
| Azul3D | Eine in Go geschriebene 3D-Spiel-Engine | https://github.com/azul3d/engine |
| engo | In Go geschriebene Open-Source-2D-Spiel-Engine | https://github.com/EngoEngine/engo |
| g3n/engine | 3D-Spiel-Engine in Go | https://github.com/g3n/engine |
| gonet | Ein Spielserver-Framework | https://github.com/xtaci/gonet |
| leaf | Spielserver-Framework | https://github.com/name5566/leaf |
| cloud-game | Webbasierte Cloud-Gaming-Services | https://github.com/giongto35/cloud-game |
GUI
| Name | Beschreibung | Repository |
|---|---|---|
| fyne | Cross-Platform-GUI-Entwicklungs-Toolkit (wirklich beeindruckend) | https://github.com/fyne-io/fyne |
| go-flutter | Flutter mit Go schreiben | https://github.com/go-flutter-desktop/go-flutter |
| Wails | Kann als schnelle und leichtgewichtige Electron-Alternative für Go betrachtet werden | https://github.com/wailsapp/wails |
Systeminteraktion
| Name | Beschreibung | Repository |
|---|---|---|
| gopsutil | Betriebssysteminformationen abrufen, kompatibel mit gängigen Systemen | https://github.com/shirou/gopsutil |
| flock | Auf Systemaufrufen basierende Dateisperre | https://github.com/gofrs/flock |
| sys | Offizielle Betriebssystem-Interaktionsbibliothek | https://cs.opensource.google/go/x/sys |
Sprachübergreifende Interaktion
| Name | Beschreibung | Repository |
|---|---|---|
| gopher-lua | In Go geschriebene Lua-VM | https://github.com/yuin/gopher-lua |
| go-lua | In Go geschriebene Lua-VM | https://github.com/Shopify/go-lua |
| goja | Unterstützt ES5.1+ | https://github.com/dop251/goja |
| tengo | Tengo ist eine kleine, dynamische, schnelle, sichere Go-Skriptsprache | https://github.com/d5/tengo |
| goby | Von Ruby inspirierte, in Go implementierte interpretierte Skriptsprache | https://github.com/goby-lang/goby |
| go+ | Von Qiniu Cloud Open Source bereitgestellte Skriptsprache, nahtlose Interaktion mit Go, auch Q-Sprache genannt | https://github.com/goplus/gop |
| go-python | Go-Aufruf von CPython2 | https://github.com/sbinet/go-python |
| go-pytyon3 | Go-Aufruf von CPython3 | https://github.com/DataDog/go-python3 |
Bildverarbeitung
| Name | Beschreibung | Repository |
|---|---|---|
| plot | Eine Plotting-Bibliothek, meist für Datenvisualisierung | https://github.com/gonum/plot |
| gg | 2D-Zeichenbibliothek | https://github.com/fogleman/gg |
| gocv | Unterstützt OpenCV4+ | https://github.com/hybridgroup/gocv |
| imaging | Eine einfache Bildverarbeitungsbibliothek | https://github.com/disintegration/imaging |
Textverarbeitung
| Name | Beschreibung | Repository |
|---|---|---|
| vale | Syntax-aware Textkorrektur-Tool | https://github.com/errata-ai/vale |
Authentifizierung & Autorisierung
| Name | Beschreibung | Repository |
|---|---|---|
| casbin | Flexible, mächtige Berechtigungsverwaltungsbibliothek | https://github.com/casbin/casbin |
| openfga | Hochleistungsfähige Berechtigungs-/Autorisierungsbibliothek, basierend auf Google Zanzibar | https://github.com/openfga/openfga |
Codegenerierung
| Name | Beschreibung | Repository |
|---|---|---|
| jennifer | Codegenerierungsbibliothek | https://github.com/dave/jennifer |
Reguläre Ausdrücke
| Name | Beschreibung | Repository |
|---|---|---|
| commonregx | Eine Bibliothek mit gesammelten gängigen regulären Ausdrücken | https://github.com/mingrammer/commonregex |
Dateiverarbeitung
| Name | Beschreibung | Repository |
|---|---|---|
| filebox | Dateioperations-Toolbibliothek | https://github.com/dstgo/filebox |
| size | Schnelle Konvertierung zwischen Dateigröße und String | https://github.com/dstgo/size |
| checksum | Bibliothek zur Berechnung von Datei-Hash-Signaturen | https://github.com/codingsince1985/checksum |
| pdfcpu | PDF-Prozessor | https://github.com/pdfcpu/pdfcpu |
| unioffice | Office-Verarbeitungsbibliothek | https://github.com/unidoc/unioffice |
| gooxml | Office-Verarbeitungsbibliothek | https://github.com/carmel/gooxml |
| pdfcpu | PDF-Verarbeitungsbibliothek | https://github.com/pdfcpu/pdfcpu |
| excelize | Excel-Verarbeitungsbibliothek | https://github.com/360EntSecGroup-Skylar/excelize |
Allgemeine Werkzeuge
| Name | Beschreibung | Repository |
|---|---|---|
| lancet | Multifunktionale Toolbibliothek, ähnlich wie Commons in Java | https://github.com/duke-git/lancet |
| bytebufferpool | Byte-Cache-Pool | https://github.com/valyala/bytebufferpool |
Entwicklungs-Frameworks
| Name | Beschreibung | Repository |
|---|---|---|
| goframe | Modernes Unternehmens-Go-Entwicklungsframework | https://github.com/gogf/gf |
Konsens-Protokolle
| Name | Beschreibung | Repository |
|---|---|---|
| hashicorp/raft | Von Consul Open Source bereitgestellte Raft-Bibliothek | https://github.com/hashicorp/raft |
| hashicorp/memberlist | Von Consul Open Source bereitgestellte Gossip-Bibliothek | https://github.com/hashicorp/memberlist |
| etcd-io/raft | Von etcd Open Source bereitgestellte Raft-Bibliothek | https://github.com/etcd-io/raft |
OCR
| Name | Beschreibung | Repository |
|---|---|---|
| gosseract | OCR-Bibliothek mit Tesseract C++ Bibliothek | https://github.com/otiai10/gosseract |
