{"id":37158476,"url":"https://github.com/mohan3d/gopenload","last_synced_at":"2026-01-14T18:55:18.553Z","repository":{"id":190972478,"uuid":"192067524","full_name":"mohan3d/gopenload","owner":"mohan3d","description":"Golang client of the openload.co service. ","archived":false,"fork":false,"pushed_at":"2019-06-25T02:11:40.000Z","size":21,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2023-08-27T13:08:20.629Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mohan3d.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,"governance":null}},"created_at":"2019-06-15T10:48:22.000Z","updated_at":"2023-08-27T13:08:44.299Z","dependencies_parsed_at":"2023-08-27T13:18:30.149Z","dependency_job_id":null,"html_url":"https://github.com/mohan3d/gopenload","commit_stats":null,"previous_names":["mohan3d/gopenload"],"tags_count":null,"template":null,"template_full_name":null,"purl":"pkg:github/mohan3d/gopenload","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mohan3d%2Fgopenload","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mohan3d%2Fgopenload/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mohan3d%2Fgopenload/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mohan3d%2Fgopenload/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mohan3d","download_url":"https://codeload.github.com/mohan3d/gopenload/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mohan3d%2Fgopenload/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28430981,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T16:38:47.836Z","status":"ssl_error","status_checked_at":"2026-01-14T16:34:59.695Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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-14T18:55:17.833Z","updated_at":"2026-01-14T18:55:18.539Z","avatar_url":"https://github.com/mohan3d.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gopenload\nGolang client of the [openload.co](https://openload.co/) service. \n\n[![Build Status](https://travis-ci.org/mohan3d/gopenload.svg?branch=master)](https://travis-ci.org/mohan3d/gopenload)\n[![Go Report Card](https://goreportcard.com/badge/github.com/mohan3d/gopenload)](https://goreportcard.com/report/github.com/mohan3d/gopenload)\n[![GoDoc](https://godoc.org/github.com/mohan3d/gopenload?status.svg)](https://godoc.org/github.com/mohan3d/gopenload/openload)\n\n\n# Installation\n\n```bash\n$ go get github.com/mohan3d/gopenload\n```\n\n# Usage\n\nimplemented [API](https://openload.co/api) features.\n\n**Retrieve account info**\n```golang\npackage main\n\nimport (\n\t\"fmt\"\n\n\t\"github.com/mohan3d/gopenload/openload\"\n)\n\nfunc main() {\n\t// Create a client.\n\tclient := openload.New(\"\u003cLOGIN\u003e\", \"\u003cKEY\u003e\", nil)\n\n\t// Get account info.\n\tinfo, err := client.AccountInfo()\n\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\tfmt.Println(info.Email)\n\tfmt.Println(info.SignupAt)\n}\n```\n\n**Upload file**\n```golang\npackage main\n\nimport (\n\t\"fmt\"\n\n\t\"github.com/mohan3d/gopenload/openload\"\n)\n\nfunc main() {\n\tclient := openload.New(\"\u003cLOGIN\u003e\", \"\u003cKEY\u003e\", nil)\n\tuploaded, err := client.Upload(\"/path/dummyfile.txt\", \"\", \"\", false)\n\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\tfmt.Println(uploaded.URL)\n\tfmt.Println(uploaded.ID)\n\tfmt.Println(uploaded.Size)\n}\n```\n\n**Retrieve file info**\n```golang\npackage main\n\nimport (\n\t\"fmt\"\n\n\t\"github.com/mohan3d/gopenload/openload\"\n)\n\nfunc main() {\n\tclient := openload.New(\"\u003cLOGIN\u003e\", \"\u003cKEY\u003e\", nil)\n\tinfo, err := client.FileInfo(\"uxbligkQAiN\")\n\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\tfmt.Println(info.Name)\n\tfmt.Println(info.Size)\n\tfmt.Println(info.Status)\n}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmohan3d%2Fgopenload","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmohan3d%2Fgopenload","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmohan3d%2Fgopenload/lists"}