def details(package_q):
q = Query(package_q)
package = local_repo.find_package(q)
if package is None:
print("No package named {Style.BRIGHT}{}{Style.RESET_ALL}".format(
q,
Style=Style
))
exit(1)
print_local_package(local_repo, package)
评论列表
文章目录