{"id":37102298,"url":"https://github.com/rtfb/gorp","last_synced_at":"2026-01-14T12:23:54.907Z","repository":{"id":17667991,"uuid":"20472707","full_name":"rtfb/gorp","owner":"rtfb","description":"ORM-ish library for Go","archived":false,"fork":true,"pushed_at":"2014-06-04T06:32:47.000Z","size":481,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"develop","last_synced_at":"2024-06-21T10:22:38.910Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"go-gorp/gorp","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rtfb.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-06-04T06:31:53.000Z","updated_at":"2024-06-21T10:22:38.911Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/rtfb/gorp","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/rtfb/gorp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtfb%2Fgorp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtfb%2Fgorp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtfb%2Fgorp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtfb%2Fgorp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rtfb","download_url":"https://codeload.github.com/rtfb/gorp/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtfb%2Fgorp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28420747,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T10:47:48.104Z","status":"ssl_error","status_checked_at":"2026-01-14T10:46:19.031Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-14T12:23:53.207Z","updated_at":"2026-01-14T12:23:54.887Z","avatar_url":"https://github.com/rtfb.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Go Relational Persistence #\n\n[![build status](https://secure.travis-ci.org/coopernurse/gorp.png)](http://travis-ci.org/coopernurse/gorp)\n\nI hesitate to call gorp an ORM.  Go doesn't really have objects, at least \nnot in the classic Smalltalk/Java sense.  There goes the \"O\".  gorp doesn't \nknow anything about the relationships between your structs (at least not \nyet).  So the \"R\" is questionable too (but I use it in the name because, \nwell, it seemed more clever).\n\nThe \"M\" is alive and well.  Given some Go structs and a database, gorp\nshould remove a fair amount of boilerplate busy-work from your code.\n\nI hope that gorp saves you time, minimizes the drudgery of getting data \nin and out of your database, and helps your code focus on algorithms, \nnot infrastructure.\n\n* Bind struct fields to table columns via API or tag\n* Support for embedded structs\n* Support for transactions\n* Forward engineer db schema from structs (great for unit tests)\n* Pre/post insert/update/delete hooks\n* Automatically generate insert/update/delete statements for a struct\n* Automatic binding of auto increment PKs back to struct after insert\n* Delete by primary key(s)\n* Select by primary key(s)\n* Optional trace sql logging\n* Bind arbitrary SQL queries to a struct\n* Bind slice to SELECT query results without type assertions\n* Use positional or named bind parameters in custom SELECT queries\n* Optional optimistic locking using a version column (for update/deletes)\n\n## Installation ##\n\n    # install the library:\n    go get github.com/coopernurse/gorp\n    \n    // use in your .go code:\n    import (\n        \"github.com/coopernurse/gorp\"\n    )\n\n## API Documentation ##\n\nFull godoc output from the latest code in master is available here:\n\nhttp://godoc.org/github.com/coopernurse/gorp\n\n## Quickstart\n\n```go\npackage main\n\nimport (\n    \"database/sql\"\n    \"github.com/coopernurse/gorp\"\n    _ \"github.com/mattn/go-sqlite3\"\n    \"log\"\n    \"time\"\n)\n\nfunc main() {\n    // initialize the DbMap\n    dbmap := initDb()\n    defer dbmap.Db.Close()\n\n    // delete any existing rows\n    err := dbmap.TruncateTables()\n    checkErr(err, \"TruncateTables failed\")\n\n    // create two posts\n    p1 := newPost(\"Go 1.1 released!\", \"Lorem ipsum lorem ipsum\")\n    p2 := newPost(\"Go 1.2 released!\", \"Lorem ipsum lorem ipsum\")\n\n    // insert rows - auto increment PKs will be set properly after the insert\n    err = dbmap.Insert(\u0026p1, \u0026p2)\n    checkErr(err, \"Insert failed\")\n\n    // use convenience SelectInt\n    count, err := dbmap.SelectInt(\"select count(*) from posts\")\n    checkErr(err, \"select count(*) failed\")\n    log.Println(\"Rows after inserting:\", count)\n\n    // update a row\n    p2.Title = \"Go 1.2 is better than ever\"\n    count, err = dbmap.Update(\u0026p2)\n    checkErr(err, \"Update failed\")\n    log.Println(\"Rows updated:\", count)\n\n    // fetch one row - note use of \"post_id\" instead of \"Id\" since column is aliased\n    //\n    // Postgres users should use $1 instead of ? placeholders\n    // See 'Known Issues' below\n    //\n    err = dbmap.SelectOne(\u0026p2, \"select * from posts where post_id=?\", p2.Id)\n    checkErr(err, \"SelectOne failed\")\n    log.Println(\"p2 row:\", p2)\n\n    // fetch all rows\n    var posts []Post\n    _, err = dbmap.Select(\u0026posts, \"select * from posts order by post_id\")\n    checkErr(err, \"Select failed\")\n    log.Println(\"All rows:\")\n    for x, p := range posts {\n        log.Printf(\"    %d: %v\\n\", x, p)\n    }\n\n    // delete row by PK\n    count, err = dbmap.Delete(\u0026p1)\n    checkErr(err, \"Delete failed\")\n    log.Println(\"Rows deleted:\", count)\n\n    // delete row manually via Exec\n    _, err = dbmap.Exec(\"delete from posts where post_id=?\", p2.Id)\n    checkErr(err, \"Exec failed\")\n\n    // confirm count is zero\n    count, err = dbmap.SelectInt(\"select count(*) from posts\")\n    checkErr(err, \"select count(*) failed\")\n    log.Println(\"Row count - should be zero:\", count)\n\n    log.Println(\"Done!\")\n}\n\ntype Post struct {\n    // db tag lets you specify the column name if it differs from the struct field\n    Id      int64 `db:\"post_id\"`\n    Created int64\n    Title   string\n    Body    string\n}\n\nfunc newPost(title, body string) Post {\n    return Post{\n        Created: time.Now().UnixNano(),\n        Title:   title,\n        Body:    body,\n    }\n}\n\nfunc initDb() *gorp.DbMap {\n    // connect to db using standard Go database/sql API\n    // use whatever database/sql driver you wish\n    db, err := sql.Open(\"sqlite3\", \"/tmp/post_db.bin\")\n    checkErr(err, \"sql.Open failed\")\n\n    // construct a gorp DbMap\n    dbmap := \u0026gorp.DbMap{Db: db, Dialect: gorp.SqliteDialect{}}\n\n    // add a table, setting the table name to 'posts' and\n    // specifying that the Id property is an auto incrementing PK\n    dbmap.AddTableWithName(Post{}, \"posts\").SetKeys(true, \"Id\")\n\n    // create the table. in a production system you'd generally\n    // use a migration tool, or create the tables via scripts\n    err = dbmap.CreateTablesIfNotExists()\n    checkErr(err, \"Create tables failed\")\n\n    return dbmap\n}\n\nfunc checkErr(err error, msg string) {\n    if err != nil {\n        log.Fatalln(msg, err)\n    }\n}\n```\n\n## Examples ##\n\n### Mapping structs to tables ###\n\nFirst define some types:\n\n```go\ntype Invoice struct {\n    Id       int64\n    Created  int64\n    Updated  int64\n    Memo     string\n    PersonId int64\n}\n\ntype Person struct {\n    Id      int64    \n    Created int64\n    Updated int64\n    FName   string\n    LName   string\n}\n\n// Example of using tags to alias fields to column names\n// The 'db' value is the column name\n//\n// A hyphen will cause gorp to skip this field, similar to the\n// Go json package.\n//\n// This is equivalent to using the ColMap methods:\n//\n//   table := dbmap.AddTableWithName(Product{}, \"product\")\n//   table.ColMap(\"Id\").Rename(\"product_id\")\n//   table.ColMap(\"Price\").Rename(\"unit_price\")\n//   table.ColMap(\"IgnoreMe\").SetTransient(true)\n//\ntype Product struct {\n    Id         int64     `db:\"product_id\"`\n    Price      int64     `db:\"unit_price\"`\n    IgnoreMe   string    `db:\"-\"`\n}\n```\n\nThen create a mapper, typically you'd do this one time at app startup:\n\n```go\n// connect to db using standard Go database/sql API\n// use whatever database/sql driver you wish\ndb, err := sql.Open(\"mymysql\", \"tcp:localhost:3306*mydb/myuser/mypassword\")\n\n// construct a gorp DbMap\ndbmap := \u0026gorp.DbMap{Db: db, Dialect: gorp.MySQLDialect{\"InnoDB\", \"UTF8\"}}\n\n// register the structs you wish to use with gorp\n// you can also use the shorter dbmap.AddTable() if you \n// don't want to override the table name\n//\n// SetKeys(true) means we have a auto increment primary key, which\n// will get automatically bound to your struct post-insert\n//\nt1 := dbmap.AddTableWithName(Invoice{}, \"invoice_test\").SetKeys(true, \"Id\")\nt2 := dbmap.AddTableWithName(Person{}, \"person_test\").SetKeys(true, \"Id\")\nt3 := dbmap.AddTableWithName(Product{}, \"product_test\").SetKeys(true, \"Id\")\n```\n\n### Struct Embedding ###\n\ngorp supports embedding structs.  For example:\n\n```go\ntype Names struct {\n    FirstName string\n    LastName  string\n}\n\ntype WithEmbeddedStruct struct {\n    Id int64\n    Names\n}\n\nes := \u0026WithEmbeddedStruct{-1, Names{FirstName: \"Alice\", LastName: \"Smith\"}}\nerr := dbmap.Insert(es)\n```\n\nSee the `TestWithEmbeddedStruct` function in `gorp_test.go` for a full example.\n\n### Create/Drop Tables ###\n\nAutomatically create / drop registered tables.  This is useful for unit tests\nbut is entirely optional.  You can of course use gorp with tables created manually,\nor with a separate migration tool (like goose: https://bitbucket.org/liamstask/goose).\n\n```go\n// create all registered tables\ndbmap.CreateTables()\n\n// same as above, but uses \"if not exists\" clause to skip tables that are\n// already defined\ndbmap.CreateTablesIfNotExists()\n\n// drop\ndbmap.DropTables()\n```\n\n### SQL Logging ###\n\nOptionally you can pass in a logger to trace all SQL statements.\nI recommend enabling this initially while you're getting the feel for what\ngorp is doing on your behalf.\n\nGorp defines a `GorpLogger` interface that Go's built in `log.Logger` satisfies.\nHowever, you can write your own `GorpLogger` implementation, or use a package such \nas `glog` if you want more control over how statements are logged.\n\n```go\n// Will log all SQL statements + args as they are run\n// The first arg is a string prefix to prepend to all log messages\ndbmap.TraceOn(\"[gorp]\", log.New(os.Stdout, \"myapp:\", log.Lmicroseconds)) \n\n// Turn off tracing\ndbmap.TraceOff()\n```\n\n### Insert ###\n\n```go\n// Must declare as pointers so optional callback hooks\n// can operate on your data, not copies\ninv1 := \u0026Invoice{0, 100, 200, \"first order\", 0}\ninv2 := \u0026Invoice{0, 100, 200, \"second order\", 0}\n\n// Insert your rows\nerr := dbmap.Insert(inv1, inv2)\n\n// Because we called SetKeys(true) on Invoice, the Id field\n// will be populated after the Insert() automatically\nfmt.Printf(\"inv1.Id=%d  inv2.Id=%d\\n\", inv1.Id, inv2.Id)\n```\n\n### Update ###\n\nContinuing the above example, use the `Update` method to modify an Invoice:\n\n```go\n// count is the # of rows updated, which should be 1 in this example\ncount, err := dbmap.Update(inv1)\n```\n\n### Delete ###\n\nIf you have primary key(s) defined for a struct, you can use the `Delete`\nmethod to remove rows:\n\n```go\ncount, err := dbmap.Delete(inv1)\n```\n\n### Select by Key ###\n\nUse the `Get` method to fetch a single row by primary key.  It returns\nnil if no row is found.\n\n```go\n// fetch Invoice with Id=99\nobj, err := dbmap.Get(Invoice{}, 99)\ninv := obj.(*Invoice)\n```\n\n### Ad Hoc SQL ###\n\n#### SELECT ####\n\n`Select()` and `SelectOne()` provide a simple way to bind arbitrary queries to a slice\nor a single struct.\n\n```go\n// Select a slice - first return value is not needed when a slice pointer is passed to Select()\nvar posts []Post\n_, err := dbmap.Select(\u0026posts, \"select * from post order by id\")\n\n// You can also use primitive types\nvar ids []string\n_, err := dbmap.Select(\u0026ids, \"select id from post\")\n\n// Select a single row.\n// Returns an error if no row found, or if more than one row is found\nvar post Post\nerr := dbmap.SelectOne(\u0026post, \"select * from post where id=?\", id)\n```\n\nWant to do joins?  Just write the SQL and the struct. gorp will bind them:\n\n```go\n// Define a type for your join\n// It *must* contain all the columns in your SELECT statement\n//\n// The names here should match the aliased column names you specify\n// in your SQL - no additional binding work required.  simple.\n//\ntype InvoicePersonView struct {\n    InvoiceId   int64\n    PersonId    int64\n    Memo        string\n    FName       string\n}\n\n// Create some rows\np1 := \u0026Person{0, 0, 0, \"bob\", \"smith\"}\ndbmap.Insert(p1)\n\n// notice how we can wire up p1.Id to the invoice easily\ninv1 := \u0026Invoice{0, 0, 0, \"xmas order\", p1.Id}\ndbmap.Insert(inv1)\n\n// Run your query\nquery := \"select i.Id InvoiceId, p.Id PersonId, i.Memo, p.FName \" +\n\t\"from invoice_test i, person_test p \" +\n\t\"where i.PersonId = p.Id\"\n\n// pass a slice to Select()\nvar list []InvoicePersonView\n_, err := dbmap.Select(\u0026list, query)\n\n// this should test true\nexpected := InvoicePersonView{inv1.Id, p1.Id, inv1.Memo, p1.FName}\nif reflect.DeepEqual(list[0], expected) {\n    fmt.Println(\"Woot! My join worked!\")\n}\n```\n\n#### SELECT string or int64 ####\n\ngorp provides a few convenience methods for selecting a single string or int64.\n\n```go\n// select single int64 from db (use $1 instead of ? for postgresql)\ni64, err := dbmap.SelectInt(\"select count(*) from foo where blah=?\", blahVal)\n\n// select single string from db:\ns, err := dbmap.SelectStr(\"select name from foo where blah=?\", blahVal)\n\n```\n\n#### Named bind parameters ####\n\nYou may use a map or struct to bind parameters by name.  This is currently\nonly supported in SELECT queries.\n\n```go\n_, err := dbm.Select(\u0026dest, \"select * from Foo where name = :name and age = :age\", map[string]interface{}{\n  \"name\": \"Rob\", \n  \"age\": 31,\n})\n```\n\n#### UPDATE / DELETE ####\n\nYou can execute raw SQL if you wish.  Particularly good for batch operations.\n\n```go\nres, err := dbmap.Exec(\"delete from invoice_test where PersonId=?\", 10)\n```\n\n### Transactions ###\n\nYou can batch operations into a transaction:\n\n```go\nfunc InsertInv(dbmap *DbMap, inv *Invoice, per *Person) error {\n    // Start a new transaction\n    trans, err := dbmap.Begin()\n    if err != nil {\n        return err\n    }\n\n    trans.Insert(per)\n    inv.PersonId = per.Id\n    trans.Insert(inv)\n\n    // if the commit is successful, a nil error is returned\n    return trans.Commit()\n}\n```\n\n### Hooks ###\n\nUse hooks to update data before/after saving to the db. Good for timestamps:\n\n```go\n// implement the PreInsert and PreUpdate hooks\nfunc (i *Invoice) PreInsert(s gorp.SqlExecutor) error {\n    i.Created = time.Now().UnixNano()\n    i.Updated = i.Created\n    return nil\n}\n\nfunc (i *Invoice) PreUpdate(s gorp.SqlExecutor) error {\n    i.Updated = time.Now().UnixNano()\n    return nil\n}\n\n// You can use the SqlExecutor to cascade additional SQL\n// Take care to avoid cycles. gorp won't prevent them.\n//\n// Here's an example of a cascading delete\n//\nfunc (p *Person) PreDelete(s gorp.SqlExecutor) error {\n    query := \"delete from invoice_test where PersonId=?\"\n    err := s.Exec(query, p.Id); if err != nil {\n        return err\n    }\n    return nil\n}\n```\n\nFull list of hooks that you can implement:\n\n    PostGet\n    PreInsert\n    PostInsert\n    PreUpdate\n    PostUpdate\n    PreDelete\n    PostDelete\n    \n    All have the same signature.  for example:\n    \n    func (p *MyStruct) PostUpdate(s gorp.SqlExecutor) error\n    \n### Optimistic Locking ###\n\ngorp provides a simple optimistic locking feature, similar to Java's JPA, that\nwill raise an error if you try to update/delete a row whose `version` column\nhas a value different than the one in memory.  This provides a safe way to do\n\"select then update\" style operations without explicit read and write locks.\n\n```go\n// Version is an auto-incremented number, managed by gorp\n// If this property is present on your struct, update\n// operations will be constrained\n//\n// For example, say we defined Person as:\n\ntype Person struct {\n    Id       int64\n    Created  int64\n    Updated  int64\n    FName    string\n    LName    string\n    \n    // automatically used as the Version col\n    // use table.SetVersionCol(\"columnName\") to map a different\n    // struct field as the version field\n    Version  int64\n}\n\np1 := \u0026Person{0, 0, 0, \"Bob\", \"Smith\", 0}\ndbmap.Insert(p1)  // Version is now 1\n\nobj, err := dbmap.Get(Person{}, p1.Id)\np2 := obj.(*Person)\np2.LName = \"Edwards\"\ndbmap.Update(p2)  // Version is now 2\n\np1.LName = \"Howard\"\n\n// Raises error because p1.Version == 1, which is out of date\ncount, err := dbmap.Update(p1)\n_, ok := err.(gorp.OptimisticLockError)\nif ok {\n    // should reach this statement\n    \n    // in a real app you might reload the row and retry, or\n    // you might propegate this to the user, depending on the desired\n    // semantics\n    fmt.Printf(\"Tried to update row with stale data: %v\\n\", err)\n} else {\n    // some other db error occurred - log or return up the stack\n    fmt.Printf(\"Unknown db err: %v\\n\", err)\n}\n```\n\n## Database Drivers ##\n\ngorp uses the Go 1 `database/sql` package.  A full list of compliant drivers is available here:\n\nhttp://code.google.com/p/go-wiki/wiki/SQLDrivers\n\nSadly, SQL databases differ on various issues. gorp provides a Dialect interface that should be\nimplemented per database vendor.  Dialects are provided for:\n\n* MySQL\n* PostgreSQL\n* sqlite3\n\nEach of these three databases pass the test suite.  See `gorp_test.go` for example \nDSNs for these three databases.\n\nSupport is also provided for:\n\n* Oracle (contributed by @klaidliadon)\n* SQL Server (contributed by @qrawl) - use driver: github.com/denisenkom/go-mssqldb \n\nNote that these databases are not covered by CI and I (@coopernurse) have no good way to\ntest them locally.  So please try them and send patches as needed, but expect a bit more\nunpredicability.\n\n## Known Issues ##\n\n### SQL placeholder portability ###\n\nDifferent databases use different strings to indicate variable placeholders in \nprepared SQL statements.  Unlike some database abstraction layers (such as JDBC),\nGo's `database/sql` does not standardize this.\n\nSQL generated by gorp in the `Insert`, `Update`, `Delete`, and `Get` methods delegates\nto a Dialect implementation for each database, and will generate portable SQL.\n\nRaw SQL strings passed to `Exec`, `Select`, `SelectOne`, `SelectInt`, etc will not be\nparsed.  Consequently you may have portability issues if you write a query like this:\n\n```go\n// works on MySQL and Sqlite3, but not with Postgresql\nerr := dbmap.SelectOne(\u0026val, \"select * from foo where id = ?\", 30)\n```\n\nIn `Select` and `SelectOne` you can use named parameters to work around this.\nThe following is portable:\n\n```go\nerr := dbmap.SelectOne(\u0026val, \"select * from foo where id = :id\", \n   map[string]interface{} { \"id\": 30})\n```\n\n### time.Time and time zones ###\n\ngorp will pass `time.Time` fields through to the `database/sql` driver, but note that \nthe behavior of this type varies across database drivers.\n\nMySQL users should be especially cautious.  See: https://github.com/ziutek/mymysql/pull/77\n\nTo avoid any potential issues with timezone/DST, consider using an integer field for time\ndata and storing UNIX time.\n\n## Running the tests ##\n\nThe included tests may be run against MySQL, Postgresql, or sqlite3.\nYou must set two environment variables so the test code knows which driver to\nuse, and how to connect to your database.\n\n```sh\n# MySQL example:\nexport GORP_TEST_DSN=gomysql_test/gomysql_test/abc123\nexport GORP_TEST_DIALECT=mysql\n\n# run the tests\ngo test\n\n# run the tests and benchmarks\ngo test -bench=\"Bench\" -benchtime 10\n```\n\nValid `GORP_TEST_DIALECT` values are: \"mysql\", \"postgres\", \"sqlite3\"\nSee the `test_all.sh` script for examples of all 3 databases.  This is the script I run\nlocally to test the library.\n\n## Performance ##\n\ngorp uses reflection to construct SQL queries and bind parameters.  See the BenchmarkNativeCrud vs BenchmarkGorpCrud in gorp_test.go for a simple perf test.  On my MacBook Pro gorp is about 2-3% slower than hand written SQL. \n\n## Pull requests / Contributions\n\nContributions are very welcome.  Please follow these guidelines:\n\n* Fork the `develop` branch and issue pull requests targeting the `develop` branch\n  * If you don't do this, I'll likely cherry pick your commit into develop\n* If you are adding an enhancement, please open an issue first with your proposed change. \n* Changes that break backwards compatibility in the public API are only accepted after we\n  discuss on a GitHub issue for a while. \n\nThanks!\n\n## Contributors\n\n* matthias-margush - column aliasing via tags\n* Rob Figueiredo - @robfig\n* Quinn Slack - @sqs\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frtfb%2Fgorp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frtfb%2Fgorp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frtfb%2Fgorp/lists"}