The Wayback Machine - http://web.archive.org/web/20230320171406/https://github.com/withfig/autocomplete/pull/1223
Skip to content
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

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

OneUpWallStreet
Copy link

@OneUpWallStreet OneUpWallStreet commented May 11, 2022

No description provided.

@withfig-bot
Copy link
Collaborator

withfig-bot commented May 11, 2022

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
Copy link
Collaborator

withfig-bot commented May 11, 2022

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants