https://github.com/kyletryon/pcpartpickerparser
Easily fetch the list of PC parts from a PCPartPicker.com part list. Useful for discord bots and more.
https://github.com/kyletryon/pcpartpickerparser
discord pcpartpicker
Last synced: 4 months ago
JSON representation
Easily fetch the list of PC parts from a PCPartPicker.com part list. Useful for discord bots and more.
- Host: GitHub
- URL: https://github.com/kyletryon/pcpartpickerparser
- Owner: KyleTryon
- Created: 2019-02-12T02:55:03.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T11:31:09.000Z (over 3 years ago)
- Last Synced: 2025-03-18T11:15:17.104Z (over 1 year ago)
- Topics: discord, pcpartpicker
- Language: TypeScript
- Homepage:
- Size: 450 KB
- Stars: 7
- Watchers: 1
- Forks: 2
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# PcPartPickerParser
PCP3 is an unofficial API that returns and array of objects containing parts and information from a given pcpartpicker.com parts list.
## Installation
```bash
npm install pcpartpickerparser --save
```
## Install
Load the module via `require`
```js
const pcp3 = require("pcpartpickerparser")
```
Load the module via `import`
```js
import { getPartsList } from 'pcpartpickerparser'
```
## Example
```js
import { getPartsList } from 'pcpartpickerparser'
async function returnParts() {
try {
const parts = getPartsList('list id')
console.log(parts)
} catch (error) {
console.log(error)
}
}
```
## API
The tabular data from a standard PC Part Picker list is converted into a JSON array with one object per row.
```json
[
{
"type": "CPU",
"image": "https://example.com",
"name": "Part name",
"price": "$9.99"
}
]
```