{"id":23175809,"url":"https://github.com/blakegearin/extreme_overclocking_client","last_synced_at":"2025-07-29T10:10:46.979Z","repository":{"id":220707018,"uuid":"749654375","full_name":"blakegearin/extreme_overclocking_client","owner":"blakegearin","description":"Ruby client for Extreme Overclocking's Folding@home Data Export","archived":false,"fork":false,"pushed_at":"2025-07-22T05:43:17.000Z","size":50,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-22T07:43:36.237Z","etag":null,"topics":["client","eoc","extreme","folding-at-home","foldingathome","overclocking","ruby","ruby-client","ruby-gem","statistics"],"latest_commit_sha":null,"homepage":"https://rubygems.org/gems/extreme_overclocking_client","language":"Ruby","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/blakegearin.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,"zenodo":null}},"created_at":"2024-01-29T05:52:59.000Z","updated_at":"2025-07-22T05:43:21.000Z","dependencies_parsed_at":"2025-07-22T07:35:56.034Z","dependency_job_id":null,"html_url":"https://github.com/blakegearin/extreme_overclocking_client","commit_stats":null,"previous_names":["blakegearin/extreme_overclocking_client"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/blakegearin/extreme_overclocking_client","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blakegearin%2Fextreme_overclocking_client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blakegearin%2Fextreme_overclocking_client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blakegearin%2Fextreme_overclocking_client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blakegearin%2Fextreme_overclocking_client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/blakegearin","download_url":"https://codeload.github.com/blakegearin/extreme_overclocking_client/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blakegearin%2Fextreme_overclocking_client/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267385495,"owners_count":24078799,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-27T02:00:11.917Z","response_time":82,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["client","eoc","extreme","folding-at-home","foldingathome","overclocking","ruby","ruby-client","ruby-gem","statistics"],"created_at":"2024-12-18T06:09:40.812Z","updated_at":"2025-07-29T10:10:46.969Z","avatar_url":"https://github.com/blakegearin.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# extreme_overclocking_client\n\nRuby client for [Extreme Overclocking's Folding@home Data Export](https://folding.extremeoverclocking.com/?nav=XML)\n\nNeed more data on projects and GPUs? Try out [`folding_at_home_client`](https://github.com/blakegearin/folding_at_home_client)\n\n## Getting Started\n\nInstall and add to Gemfile:\n\n```bash\nbundle add extreme_overclocking_client\n```\n\nInstall without bundler:\n\n```bash\ngem install extreme_overclocking_client\n```\n\n## Usage\n\nPlease read the full [usage statement](https://folding.extremeoverclocking.com/?nav=XML) from Extreme Overclocking before using. This client has some simplistic rate limiting built-in, but ultimately it's up to consumers of the gem to prevent excessive queries and abuse. Neglecting to do so may result in your IP being blocked.\n\n- [Service](#service)\n- [Config](#config)\n- [User](#user)\n- [Team](#team)\n\nData can be retrieved via the `Service` class or individual classes with a configuration parameter.\n\n### Service\n\n```ruby\nservice = ExtremeOverclockingClient::Service.new(\n  project_url: 'https://github.com/blakegearin/extreme_overclocking_client',\n  project_name: 'ExtremeOverclockingClientTesting',\n  project_version: '0.0.1',\n)\n\nuser_id = 32334\nname = 'EOC_Jason'\nteam_id = 11314\n\n# User\n\nuser = service.user(id: user_id)\nuser = service.user(name: name, team_id: team_id)\n\n# Users\n\nusers = service.users(ids: [32334, 811139])\nhashes = [\n  { name: name, team_id: team_id},\n  { name: name, team_id: team_id},\n]\nusers = service.users(hashes: hashes)\n\n# Team\n\nteam = service.team(id: team_id)\n\n# Teams\n\nteams = service.teams(ids: [11314, 223518])\n```\n\n### Config\n\nProvide a `project_url` and `project_name` to let Extreme Overclocking know what your project is. These values populate referer and user-agent metadata sent with each request.\n\n```ruby\nconfig = ExtremeOverclockingClient::Config.new(\n  project_url: 'https://github.com/blakegearin/extreme_overclocking_client',\n  project_name: 'ExtremeOverclockingClientTesting',\n  project_version: '0.0.1',\n)\n```\n\n### User\n\n```ruby\nuser_id = 32334\nname = 'EOC_Jason'\nteam_id = 11314\nconfig = ExtremeOverclockingClient::Config.new(\n  project_url: 'https://github.com/blakegearin/extreme_overclocking_client',\n  project_name: 'ExtremeOverclockingClientTesting',\n  project_version: '0.0.1',\n)\n\n# Fetch a user by id\n# Required: config, id\nuser = ExtremeOverclockingClient::User.new(config: config, id: user_id)\n\n# Fetch a user with a name and team_id\n# Required: config, name, team_id\nuser = ExtremeOverclockingClient::User.new(config: config, name: name, team_id: team_id)\n\n## Update a user with the latest stats\nuser.refresh\n```\n\n### Team\n\n```ruby\nid = 11314\nconfig = ExtremeOverclockingClient::Config.new(\n  project_url: 'https://github.com/blakegearin/extreme_overclocking_client',\n  project_name: 'ExtremeOverclockingClientTesting',\n  project_version: '0.0.1',\n)\n\n# Fetch a team by id\nteam = ExtremeOverclockingClient::Team.new(config: config, id: id)\n\n## Update a team with the latest stats\nteam.refresh\n```\n\n## Development\n\nAfter checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.\n\nTo install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).\n\n## Contributing\n\nBug reports, feature requests, and pull requests are welcome.\n\n## Links\n\n- [Folding@home](https://foldingathome.org)\n\n- [Folding@home Download](https://foldingathome.org/start-folding)\n\n- [Folding@home Stats](https://stats.foldingathome.org)\n\n- [EXTREME Overclocking (EOC) Stats](https://folding.extremeoverclocking.com/aggregate_summary.php)\n\n- [EXTREME Overclocking (EOC) Stats Export Info](https://folding.extremeoverclocking.com/?nav=XML)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblakegearin%2Fextreme_overclocking_client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblakegearin%2Fextreme_overclocking_client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblakegearin%2Fextreme_overclocking_client/lists"}