autocomplete
autocomplete copied to clipboard
feat(pip): add openai to the list of packages
Overview
src/pip.ts:
Info:
Script:
pip list
postProcess(function):
function (out) {
const lines = out.split("\n");
const packages = [];
for (let i = 2; i < lines.length; i++) {
packages.push({
name: lines[i],
icon: "🐍",
});
}
return packages;
}
URLs:
https://pypi.org/simple)
Hello @OneUpWallStreet, thank you very much for creating a Pull Request! Here is a small checklist to get this PR merged as quickly as possible:
- [ ] Do all subcommands / options which take arguments include the
argsproperty (args: {})? - [ ] Are all options modular? E.g.
-a-u-xinstead of-aux - [ ] Have all other checks passed?
Please add a 👍 as a reaction to this comment to show that you read this.
recheck
CLA Assistant Lite bot:
Thank you for your submission, we really appreciate it. Like many open-source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution. You can sign the CLA by just posting a Pull Request Comment same as the below format.
I have read the CLA Document and I hereby sign the CLA
You can retrigger this bot by commenting recheck in this Pull Request