npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@sourcegraph/scip-python

v0.6.0

Published

SCIP indexer for Python

Downloads

392

Readme

scip-python

Sourcegraph fork of pyright focused on generating SCIP for python projects.

Project is primarily an addition to Pyright. At this time, there are no substantial changes to the pyright library.

Pre-requisites

$ # Install scip-python
$ npm install -g @sourcegraph/scip-python

scip-python requires Node v16 or newer. See the Dockerfile for an exact SHA that is tested.

scip-python uses pip to attempt to determine the versions and names of the packages available in your environment. If you do not use pip to install the packages, you can instead use the --environment flag to supply a list of packages to use as the environment. This will skip any calls out to pip to determine the state of your env. See Environment for more information.

Usage

$ npm install @sourcegraph/scip-python

$ # NOTE: make sure to activate your virtual environment before running
$ scip-python index . --project-name=$MY_PROJECT

$ # Make sure to point towards the sourcegraph instance you're interested in uploading to.
$ #     more information at https://github.com/sourcegraph/src-cli
$ src code-intel upload

target-only

To run scip-python over only a particular directory, you can use the --target-only flag. Example:

$ scip-python index . --project-name=$MY_PROJECT --target-only=src/subdir

project-namespace

Additionally, if your project is loaded with some prefix, you can use the --project-namespace to put a namespace before all the generated symbols for this project.

$ scip-python index . --project-name=$MY_PROJECT --project-namespace=implicit.namespace

Now all symbols will have implicit.namespace prepended to their symbol, so that you can use it for cross repository navigation, even if the directory structure in your current project does not explicitly show implicit/namespace/myproject/__init__.py.

Environment

The environment file format is a JSON list of PythonPackages. The PythonPackage has the following form:

{
    "name": "PyYAML",
    "version": "6.0",
    "files": [
      "PyYAML-6.0.dist-info/INSTALLER",
      ...
      "yaml/__init__.py",
      "yaml/composer.py",
      "yaml/tokens.py",
      ...
    ]
},

Where:

  • name:
    • The name of the package. Often times this is the same as the module, but is not always the case.
    • For example, PyYAML is the name of the package, but the module is yaml (i.e. import yaml).
  • version:
    • The vesion of the package. This is used to generate stable references to external packages.
  • files:
    • A list of all the files that are a member of this package.
    • Some packages declare multiple modules, so these should all be included.

The environment file should be a list of these packages:

[
  { "name": "PyYAML", "version": "6.0", "files": [...] },
  { "name": "pytorch", "version": "3.0", "files": [..] },
  ...
]

To use the environment file, you should call scip-python like so:

$ scip-python index --project-name=$MY_PROJECT --environment=path/to/env.json

If you're just using pip, this should not be required. We should calculate this from the pip environment. If you experience any bugs, please report them. The goal is that we support standard pip installation without additional configuration. If there is other python tooling that can generate this information, you can file an issue and we'll see if we can support it as well.

Sourcegraph Example Configuration

Using the usage example above may be quite simple to add a CI pipeline (perhaps using the sourcegraph/scip-python:autoindex) image and uploading the corresponding index.scip file to Sourcegraph only for commits that you are intersted in (whether that's only HEAD or every branch).

However, if you're interested in using the Auto-Indexing feature, an example configuration skeleton can be found below:

{
    "index_jobs": [
        {
            "indexer": "sourcegraph/scip-python:autoindex",
            "local_steps": [
                "pip install . || true",
            ],
            "indexer_args": [
              "scip-python", "index", ".",
              "--project-name", "<your name here>",
              "--project-version", "_"
            ],
            "steps": [],
            "outfile": "",
            "root": ""
        }
    ],
    "shared_steps": []
}

To compare upstream from pyright

You can go to the following Sourcegraph link to compare the changes we've made from pyright.

The changes are almost exclusively in the folder packages/pyright-scip/ and various package.json files due to adding some additional dependencies.

In general, we've tried to make very little changes to anything inside of the pyright packages. The only changes that are inside there at this point are:

  • Not bail out of indexing if it's taking a long time
  • Not throw away indexed files if memory usage gets high
  • Allow parsing of some additional files

Contributing

See pyright-scip/CONTRIBUTING.md.