Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elliotwutingfeng/cpubenchmarknet
An unofficial library for downloading the CPU Mega List dataset by PassMark Software.
https://github.com/elliotwutingfeng/cpubenchmarknet
benchmarks buildapc cpu cpubenchmark data-science gaming hackintosh kaggle osint passmark sffpc
Last synced: 12 days ago
JSON representation
An unofficial library for downloading the CPU Mega List dataset by PassMark Software.
- Host: GitHub
- URL: https://github.com/elliotwutingfeng/cpubenchmarknet
- Owner: elliotwutingfeng
- License: mit
- Created: 2023-06-20T16:12:39.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-25T10:19:23.000Z (12 months ago)
- Last Synced: 2024-11-11T18:17:14.629Z (2 months ago)
- Topics: benchmarks, buildapc, cpu, cpubenchmark, data-science, gaming, hackintosh, kaggle, osint, passmark, sffpc
- Language: Go
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Unofficial cpubenchmark.net dataset utility
[![Go Reference](https://img.shields.io/badge/go-reference-blue?logo=go&logoColor=white&style=for-the-badge)](https://pkg.go.dev/github.com/elliotwutingfeng/cpubenchmarknet)
[![Go Report Card](https://goreportcard.com/badge/github.com/elliotwutingfeng/cpubenchmarknet?style=for-the-badge)](https://goreportcard.com/report/github.com/elliotwutingfeng/cpubenchmarknet)
[![Coveralls](https://img.shields.io/coverallsCoverage/github/elliotwutingfeng/cpubenchmarknet?logo=coveralls&style=for-the-badge)](https://coveralls.io/github/elliotwutingfeng/cpubenchmarknet?branch=main)[![GitHub license](https://img.shields.io/badge/LICENSE-MIT-GREEN?style=for-the-badge)](LICENSE)
An unofficial library for downloading the [CPU Mega List](https://cpubenchmark.net/CPU_mega_page.html) dataset by [PassMark Software](https://passmark.com).
Spot any bugs? Report them [here](https://github.com/elliotwutingfeng/cpubenchmarknet/issues)
**Disclaimer:** _This project is not sponsored, endorsed, or otherwise affiliated with PassMark Software._
## Requirements
- Go 1.20
## Basic Example
The following snippet downloads the dataset as a JSON string and prints it to stdout.
```go
package mainimport (
"fmt""github.com/elliotwutingfeng/cpubenchmarknet"
)func main() {
CPUMegaList, err := cpubenchmarknet.GetCPUMegaList()
if err == nil {
fmt.Println(CPUMegaList) // JSON string
} else {
fmt.Println(err)
}
}
```## References
- [PassMark Software Terms of Use](https://passmark.com/legal/disclaimer.php)