-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable additional vendors and allow filtering #7
Comments
Sure, this will remove some unnecessary bottle neck due requested and not used data. |
This is implemented as of ba43354. Filtering is done using a {
search(term: "resistor 1k 0603") {
offers(from: ["Digikey", "Mouser"]) {
sku {
vendor
part
}
prices {
USD
}
}
}
}
|
Nice, I am making here to include this into the KiCost attempt. Will this also work with math API, correct? |
What's the math API? Just to be clearer here is an example with previously disabled vendors. Everything except 'Digikey' and 'RS' uses the same names as the Octopart API. {
search(term: "resistor 1k 0603") {
offers(from: ["TME", "LCSC"]) {
sku {
vendor
}
prices {
USD
}
}
}
} |
How you can get from LCSC PCB? I planned to include this in KiCost. |
Yep, all of Octopart now which includes some info from LCSC. I haven't done anything special yet. Just passing the info on for now. |
Is the https://dev-partinfo.kitspace.org/ offline? I was trying to test and integrate the new feature into KiCost. |
Oops, I messed up the server/domain transfer. Should be up again soon. |
Returned |
Thanks for reporting, fixed it with 9d14cf8. |
As mentioned in hildogjr/KiCost#346. We should be able to support all vendors that octopart indexes (and then some, when we get to it).
The text was updated successfully, but these errors were encountered: