MCPcopy
hub / github.com/linkedin/shiv

github.com/linkedin/shiv @1.0.8 sqlite

repository ↗ · DeepWiki ↗ · release 1.0.8 ↗
100 symbols 401 edges 20 files 38 documented · 38%
README

pypi ci codecov docs license supported

snake

shiv

shiv is a command line utility for building fully self-contained Python zipapps as outlined in PEP 441, but with all their dependencies included!

shiv's primary goal is making distributing Python applications fast & easy.

📗 Full documentation can be found here.

sys requirements

  • python3.8+
  • linux/osx/windows

quickstart

shiv has a few command line options of its own and accepts almost all options passable to pip install.

simple cli example

Creating an executable of flake8 with shiv:

$ shiv -c flake8 -o ~/bin/flake8 flake8
$ ~/bin/flake8 --version
3.7.8 (mccabe: 0.6.1, pycodestyle: 2.5.0, pyflakes: 2.1.1) CPython 3.7.4 on Darwin

-c flake8 specifies the console script that should be invoked when the executable runs, -o ~/bin/flake8 specifies the location of the generated executable file and flake8 is the dependency that should be installed from PyPI.

Creating an interactive executable with the boto library:

$ shiv -o boto.pyz boto
Collecting boto
Installing collected packages: boto
Successfully installed boto-2.49.0
$ ./boto.pyz
Python 3.7.4 (v3.7.4:e09359112e, Jul  8 2019, 14:54:52)
[Clang 6.0 (clang-600.0.57)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
(InteractiveConsole)
>>> import boto
>>> boto.__version__
'2.49.0'

installing

You can install shiv by simply downloading a release from https://github.com/linkedin/shiv/releases or via pip / pypi:

pip install shiv

You can even create a pyz of shiv using shiv!

python3 -m venv .
source bin/activate
pip install shiv
shiv -c shiv -o shiv shiv

developing

We'd love contributions! Getting bootstrapped to develop is easy:

git clone git@github.com:linkedin/shiv.git
cd shiv
python3 -m venv venv
source ./venv/bin/activate
python3 -m pip install --upgrade build
python3 -m build
python3 -m pip install -e .

Don't forget to run and write tests:

python3 -m pip install tox
tox

To build documentation when you changed something in docs:

python3 -m pip install -r docs/requirements.txt
sphinx-build docs build/html

gotchas

Zipapps created with shiv are not guaranteed to be cross-compatible with other architectures. For example, a pyz file built on a Mac may only work on other Macs, likewise for RHEL, etc. This usually only applies to zipapps that have C extensions in their dependencies. If all your dependencies are pure python, then chances are the pyz will work on other platforms. Just something to be aware of.

Zipapps created with shiv will extract themselves into ~/.shiv, unless overridden via SHIV_ROOT. If you create many utilities with shiv, you may want to occasionally clean this directory.


acknowledgements

Similar projects:

Logo by Juliette Carvalho

Core symbols most depended-on inside this repo

import_string
called by 8
src/shiv/bootstrap/__init__.py
install
called by 5
src/shiv/pip.py
write_to_zipapp
called by 4
src/shiv/builder.py
create_archive
called by 4
src/shiv/builder.py
get_first_sitedir_index
called by 4
src/shiv/bootstrap/__init__.py
extend_python_path
called by 4
src/shiv/bootstrap/__init__.py
find_entry_point
called by 3
src/shiv/cli.py
str_bool
called by 3
src/shiv/bootstrap/environment.py

Shape

Method 53
Function 39
Class 6
Route 2

Languages

Python100%

Modules by API surface

test/test_cli.py21 symbols
test/test_bootstrap.py15 symbols
src/shiv/bootstrap/environment.py14 symbols
src/shiv/bootstrap/__init__.py10 symbols
test/test_builder.py7 symbols
src/shiv/bootstrap/filelock.py7 symbols
test/conftest.py6 symbols
src/shiv/cli.py5 symbols
src/shiv/builder.py5 symbols
src/shiv/bootstrap/interpreter.py4 symbols
src/shiv/pip.py2 symbols
src/shiv/info.py2 symbols

For agents

$ claude mcp add shiv \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact