项目作者: leejeonghun

项目描述 :
Import Python modules from 7z archives
高级语言: C
项目地址: git://github.com/leejeonghun/import7z.git
创建时间: 2021-01-11T14:32:12Z
项目社区:https://github.com/leejeonghun/import7z

开源协议:Other

下载


PyPI - License
Build Status
codecov
PyPI version

import7z

This module is a modified version of zipimport to import Python modules and packages from 7z-format archives instead ZIP-format.

Usage

  1. import import7z
  2. sys.path.insert(0, 'example.7z')
  3. sys.path_hooks.insert(0, import7z.importer7z)
  4. import some_module_in_7z

License

It’s Python Software Foundation License cause it used zipimport.c from CPython 3.6.
LZMA SDK is public domain.