autocomplete icon indicating copy to clipboard operation
autocomplete copied to clipboard

feat(pip): add openai to the list of packages

Open OneUpWallStreet opened this issue 3 years ago • 2 comments

OneUpWallStreet avatar May 11 '22 06:05 OneUpWallStreet

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)

withfig-bot avatar May 11 '22 06:05 withfig-bot

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 args property (args: {})?
  • [ ] Are all options modular? E.g. -a -u -x instead of -aux
  • [ ] Have all other checks passed?

Please add a 👍 as a reaction to this comment to show that you read this.

withfig-bot avatar May 11 '22 06:05 withfig-bot

recheck

mschrage avatar Oct 12 '23 19:10 mschrage

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

withfig-bot avatar Oct 12 '23 19:10 withfig-bot