
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
这是一个用于解压和提取Unity包文件的命令行工具。它可以处理.zip
和.unitypackage
文件。
# 直接从PyPI安装
pip install unpack-unitypackage
# 从源代码安装(会自动安装所有依赖)
pip install -e .
安装后,您可以在任何目录下使用unpack_unitypackage
命令。
如果您不想使用pip安装,可以通过创建符号链接的方式将脚本添加到系统路径:
# 首先确保脚本有执行权限
chmod +x unpack_unitypackage.py
# 创建符号链接到/usr/local/bin(需要管理员权限)
sudo ln -s "$(pwd)/unpack_unitypackage.py" /usr/local/bin/unpack_unitypackage
# 解压Unity包文件
unpack_unitypackage path/to/your/file.unitypackage
# 解压包含Unity包的ZIP文件
unpack_unitypackage path/to/your/archive.zip
.unitypackage
文件.unitypackage
文件的ZIP压缩包如果您想将此包发布到PyPI,请按照以下步骤操作:
pip install build twine
python -m build
# 上传到测试PyPI(推荐先测试)
python -m twine upload --repository testpypi dist/*
# 上传到正式PyPI
python -m twine upload dist/*
# 从测试PyPI安装
pip install --index-url https://test.pypi.org/simple/ unpack-unitypackage
# 从正式PyPI安装
pip install unpack-unitypackage
FAQs
解压和提取Unity包文件的工具
We found that unpack-unitypackage demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.