{"id":48205008,"url":"https://github.com/llonchj/godoo","last_synced_at":"2026-04-04T18:35:29.443Z","repository":{"id":57499856,"uuid":"131435408","full_name":"llonchj/godoo","owner":"llonchj","description":"Golang ODOO Client \u0026 Generator","archived":false,"fork":false,"pushed_at":"2023-03-28T10:33:10.000Z","size":7686,"stargazers_count":8,"open_issues_count":1,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-12-20T21:39:45.869Z","etag":null,"topics":["api","go","golang","odoo"],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/llonchj.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-04-28T18:45:41.000Z","updated_at":"2024-05-01T14:19:51.000Z","dependencies_parsed_at":"2024-06-20T05:45:31.583Z","dependency_job_id":"d73eca2b-3a9b-46c2-9064-0dd3e0475cbd","html_url":"https://github.com/llonchj/godoo","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/llonchj/godoo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/llonchj%2Fgodoo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/llonchj%2Fgodoo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/llonchj%2Fgodoo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/llonchj%2Fgodoo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/llonchj","download_url":"https://codeload.github.com/llonchj/godoo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/llonchj%2Fgodoo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31409231,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T10:20:44.708Z","status":"ssl_error","status_checked_at":"2026-04-04T10:20:06.846Z","response_time":60,"last_error":"SSL_read: 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":["api","go","golang","odoo"],"created_at":"2026-04-04T18:35:28.499Z","updated_at":"2026-04-04T18:35:29.430Z","avatar_url":"https://github.com/llonchj.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# godoo\n\nOdoo API client for Go.\n\n## Install\n\n```bash\ngo install github.com/llonchj/godoo@latest\n```\n\n## Using the API\n\nThis is an example of how create a new sale order :\n\n```go\npackage main\n\n//go:generate godoo add all --uri http://localhost:8069 --database test --username admin --password password\n\n\nimport (\n \"fmt\"\n\n \"github.com/llonchj/godoo/api\"\n)\n\nfunc main() {\n config := \u0026api.Config{\n  DbName:   \"test\",\n  Admin:    \"admin\",\n  Password: \"password\",\n  URI:      \"http://localhost:8069\",\n }\n\n c, err := config.NewClient()\n if err != nil {\n  fmt.Println(err.Error())\n }\n err = c.CompleteSession()\n if err != nil {\n  fmt.Println(err.Error())\n }\n\n //get the sale order service\n s := api.NewSaleOrderService(c)\n //call the function GetAll() linked to the sale order service\n so, err := s.GetAll()\n if err != nil {\n  fmt.Println(err.Error())\n }\n fmt.Println(so)\n}\n```\n\n## ToDo\n\n- Tests\n- Version support (8-9-10-11)\n  - Printing based on version (\u003chttps://github.com/OCA/odoorpc/blob/master/odoorpc/report.py\u003e)\n- New Odoo API functions\n  - [Workflow Signals](https://www.odoo.com/documentation/8.0/api_integration.html#workflow-manipulations)\n  - [Report printing](https://www.odoo.com/documentation/8.0/api_integration.html#report-printing)\n\n```\ndocker compose run odoo odoo -i base -d odoo --stop-after-init\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fllonchj%2Fgodoo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fllonchj%2Fgodoo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fllonchj%2Fgodoo/lists"}