GPUCHECK Scraper
7 days trial then $50.00/month - No credit card required now
GPUCHECK Scraper
7 days trial then $50.00/month - No credit card required now
Extract only new gpu, cpu, quality, resolution, game, and corresponding fps from the last run
You can access the GPUCHECK Scraper programmatically from your own Python applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.
1from apify_client import ApifyClient
2
3# Initialize the ApifyClient with your Apify API token
4# Replace '<YOUR_API_TOKEN>' with your token.
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7# Prepare the Actor input
8run_input = {
9 "gpuIncludeRegex": ["460"],
10 "cpuIncludeRegex": ["2200g"],
11 "gpuExcludeRegex": [
12 "Radeon HD",
13 "Radeon R\\d+",
14 "GT\\s+",
15 "GTS",
16 "Max-Q",
17 "GTX \\d{3}",
18 "mobile",
19 "GTX 10\\d+",
20 "Radeon VII",
21 "RX VEGA",
22 "TITAN",
23 "2080",
24 ],
25 "cpuExcludeRegex": [
26 "i[3-7].\\d{3}\\w{1}",
27 "i[3-7]-\\d{3}",
28 "Ryzen 3 1\\d+",
29 "Ryzen 5 1\\d+",
30 "Ryzen 7 1\\d+",
31 "Threadripper",
32 "AMD Athlon",
33 "AMD E2",
34 "AMD FX",
35 "AMD Phenom",
36 "Intel Core2 Duo",
37 "Intel Core2 Extreme",
38 "Intel Core2 Quad",
39 "Intel Pentium",
40 "i3-2\\d+",
41 "i5-2\\d+",
42 "i7-2\\d+",
43 "i3-3\\d+",
44 "i5-3\\d+",
45 "i7-3\\d+",
46 "i3-4\\d+",
47 "i5-4\\d+",
48 "i7-4\\d+",
49 "i3-5\\d+",
50 "i5-5\\d+",
51 "i7-5\\d+",
52 "i3-6\\d+",
53 "i5-6\\d+",
54 "i7-6\\d+",
55 "i3-7\\d+",
56 "i5-7\\d+",
57 "i7-7\\d+",
58 ],
59 "proxyConfig": { "useApifyProxy": True },
60}
61
62# Run the Actor and wait for it to finish
63run = client.actor("dtrungtin/gpuchecker-scraper").call(run_input=run_input)
64
65# Fetch and print Actor results from the run's dataset (if there are any)
66print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
67for item in client.dataset(run["defaultDatasetId"]).iterate_items():
68 print(item)
69
70# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start
gpu, cpu, quality, resolution, game, fps API in Python
The Apify API client for Python is the official library that allows you to use GPUCHECK Scraper API in Python, providing convenience functions and automatic retries on errors.
Install the apify-client
pip install apify-client
Other API clients include: