GPUCHECK Scraper avatar
GPUCHECK Scraper
Under maintenance
Try for free

7 days trial then $50.00/month - No credit card required now

View all Actors
This Actor is under maintenance.

This Actor may be unreliable while under maintenance. Would you like to try a similar Actor instead?

See alternative Actors
GPUCHECK Scraper

GPUCHECK Scraper

dtrungtin/gpuchecker-scraper
Try for free

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

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more

1from apify_client import ApifyClient
2
3# Initialize the ApifyClient with your Apify API token
4client = ApifyClient("<YOUR_API_TOKEN>")
5
6# Prepare the Actor input
7run_input = {
8    "gpuIncludeRegex": ["460"],
9    "cpuIncludeRegex": ["2200g"],
10    "gpuExcludeRegex": [
11        "Radeon HD",
12        "Radeon R\\d+",
13        "GT\\s+",
14        "GTS",
15        "Max-Q",
16        "GTX \\d{3}",
17        "mobile",
18        "GTX 10\\d+",
19        "Radeon VII",
20        "RX VEGA",
21        "TITAN",
22        "2080",
23    ],
24    "cpuExcludeRegex": [
25        "i[3-7].\\d{3}\\w{1}",
26        "i[3-7]-\\d{3}",
27        "Ryzen 3 1\\d+",
28        "Ryzen 5 1\\d+",
29        "Ryzen 7 1\\d+",
30        "Threadripper",
31        "AMD Athlon",
32        "AMD E2",
33        "AMD FX",
34        "AMD Phenom",
35        "Intel Core2 Duo",
36        "Intel Core2 Extreme",
37        "Intel Core2 Quad",
38        "Intel Pentium",
39        "i3-2\\d+",
40        "i5-2\\d+",
41        "i7-2\\d+",
42        "i3-3\\d+",
43        "i5-3\\d+",
44        "i7-3\\d+",
45        "i3-4\\d+",
46        "i5-4\\d+",
47        "i7-4\\d+",
48        "i3-5\\d+",
49        "i5-5\\d+",
50        "i7-5\\d+",
51        "i3-6\\d+",
52        "i5-6\\d+",
53        "i7-6\\d+",
54        "i3-7\\d+",
55        "i5-7\\d+",
56        "i7-7\\d+",
57    ],
58    "proxyConfig": { "useApifyProxy": True },
59}
60
61# Run the Actor and wait for it to finish
62run = client.actor("dtrungtin/gpuchecker-scraper").call(run_input=run_input)
63
64# Fetch and print Actor results from the run's dataset (if there are any)
65print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
66for item in client.dataset(run["defaultDatasetId"]).iterate_items():
67    print(item)
68
69# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start
Developer
Maintained by Community
Actor metrics
  • 1 monthly user
  • 1 star
  • 100.0% runs succeeded
  • Created in Mar 2020
  • Modified about 2 years ago
Categories