File: installed.pyi

package info (click to toggle)
python-pkginfo 1.12.1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 980 kB
  • sloc: python: 2,142; makefile: 84; sh: 14
file content (10 lines) | stat: -rw-r--r-- 330 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
import types

from .distribution import Distribution as Distribution

class Installed(Distribution):
    package_name: str
    package: str | types.ModuleType
    metadata_version: str | None
    def __init__(self, package: str | types.ModuleType, metadata_version: str | None = ...) -> None: ...
    def read(self) -> bytes: ...