Questions tagged [pyi]

Tags for questions about Python Information (pyi). The python package for scraping pypi endpoints to retrieve python package information.

PYthon Information is a CLI that scrapes pypi json endpoints to retrieve python package data.

It can be used to easily get basic stats on a package without the need to go to pypi to look it up.

Read more about pyi package here

16 questions
-1
votes
1 answer

How to resolve undefined type in pyi file?

I'm manually creating a pyi file for one of my classes and one of its function return types relies on an enum I made in another file. Relevant code snippets: Board.pyi class Board: def access(self, i: int, j: int) -> Color: ... Where Color is…
feverdreme
  • 467
  • 4
  • 12
1
2