{"id":40615435,"url":"https://github.com/guineapiguuhh/haxe-github","last_synced_at":"2026-01-21T06:02:53.080Z","repository":{"id":224842652,"uuid":"764380208","full_name":"GuineaPigUuhh/haxe-github","owner":"GuineaPigUuhh","description":"Haxe functions to use the Github API Integration.","archived":false,"fork":false,"pushed_at":"2024-06-07T19:18:54.000Z","size":1603,"stargazers_count":9,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-06-07T20:38:38.042Z","etag":null,"topics":["api","github-api","haxe-library"],"latest_commit_sha":null,"homepage":"https://lib.haxe.org/p/haxe-github/","language":"Haxe","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/GuineaPigUuhh.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,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-02-28T00:58:46.000Z","updated_at":"2024-06-07T19:18:58.000Z","dependencies_parsed_at":"2024-03-28T22:26:24.682Z","dependency_job_id":"62c30c8a-db48-4706-a4b9-babdfea4bf14","html_url":"https://github.com/GuineaPigUuhh/haxe-github","commit_stats":null,"previous_names":["guineapiguuhh/hxgithub-api","guineapiguuhh/haxe-github"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/GuineaPigUuhh/haxe-github","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GuineaPigUuhh%2Fhaxe-github","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GuineaPigUuhh%2Fhaxe-github/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GuineaPigUuhh%2Fhaxe-github/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GuineaPigUuhh%2Fhaxe-github/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GuineaPigUuhh","download_url":"https://codeload.github.com/GuineaPigUuhh/haxe-github/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GuineaPigUuhh%2Fhaxe-github/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28628701,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-21T04:47:28.174Z","status":"ssl_error","status_checked_at":"2026-01-21T04:47:22.943Z","response_time":86,"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":["api","github-api","haxe-library"],"created_at":"2026-01-21T06:02:52.051Z","updated_at":"2026-01-21T06:02:53.068Z","avatar_url":"https://github.com/GuineaPigUuhh.png","language":"Haxe","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e \n  \u003ch1\u003eHaxe Github\u003c/h1\u003e\n  \u003ch4\u003e\n  Haxe functions to use the\n  \u003ca href='https://docs.github.com/en/rest?apiVersion=2022-11-28'\u003eGitHub API Integration\u003c/a\u003e.\n  \u003c/h4\u003e\n  \u003cimg src=\"img/imgSharp.png\" width=550/\u003e\n  \u003ch2\u003eInstallation\u003c/h2\u003e\n\n  put this command in your cmd:\n  ```bash\n  haxelib install haxe-github\n  ```\n\n  if you want to have the latest version of Lib:\n  ```bash\n  haxelib git haxe-github https://github.com/GuineaPigUuhh/haxe-github.git\n  ```\n\n  \u003ch2\u003eUsage Exemple\u003c/h2\u003e\n\u003c/div\u003e\n\n```haxe\nimport haxegithub.utils.*;\n\nfinal username:String = 'GuineaPigUuhh';\nfinal reponame:String = 'haxe-github';\n\nfinal repository = Repository.get(username, reponame);\nfinal user = User.get(username);\n\nSys.println('USER: ' + user.name);\nSys.println('FOLLOWERS: ' + user.followers + ' FOLLOWING: ' + user.following);\nSys.println('REPOSITORY: ' + repository.name + ' by ' + repository.owner.login);\n```\nResult:\n```haxe\n/*\n  USER: https://api.github.com/users/GuineaPigUuhh\n  FOLLOWERS: 13 FOLLOWING: 84\n  REPOSITORY: https://api.github.com/repos/GuineaPigUuhh/haxe-github\n*/\n```\n\n  ---\n\u003cdiv align=\"center\"\u003e\n\n\u003e If you want more demonstrations of the use of the lib, go  to the examples folder\n\n  ---\n\n  \u003ch3\u003e\u003ca href=\"https://github.com/GuineaPigUuhh/HaxeFlixel-Github-Exemple\"\u003eThe library being used in HaxeFlixel:\u003c/a\u003e\u003c/h3\u003e\n\n  \u003cimg src=\"https://raw.githubusercontent.com/GuineaPigUuhh/HaxeFlixel-Github-Exemple/main/img/view.png\" width=600/\u003e\n\n---\n\n  \u003e \u003ch2\u003eDeveloper:\u003c/h2\u003e\n  \u003e \u003ch3\u003e\u003ca href=\"https://github.com/GuineaPigUuhh/\"\u003eGuineaPigUuhh\u003c/a\u003e\u003c/h3\u003e\n\u003c/div\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguineapiguuhh%2Fhaxe-github","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fguineapiguuhh%2Fhaxe-github","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguineapiguuhh%2Fhaxe-github/lists"}