本文整理匯總了Python中ensurepip._PROJECTS屬性的典型用法代碼示例。如果您正苦於以下問題:Python ensurepip._PROJECTS屬性的具體用法?Python ensurepip._PROJECTS怎麽用?Python ensurepip._PROJECTS使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類ensurepip
的用法示例。
在下文中一共展示了ensurepip._PROJECTS屬性的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: main
# 需要導入模塊: import ensurepip [as 別名]
# 或者: from ensurepip import _PROJECTS [as 別名]
def main():
outofdate = False
for project, version in ensurepip._PROJECTS:
data = json.loads(urllib2.urlopen(
"https://pypi.python.org/pypi/{}/json".format(project),
).read().decode("utf8"))
upstream_version = data["info"]["version"]
if version != upstream_version:
outofdate = True
print("The latest version of {} on PyPI is {}, but ensurepip "
"has {}".format(project, upstream_version, version))
if outofdate:
sys.exit(1)
示例2: main
# 需要導入模塊: import ensurepip [as 別名]
# 或者: from ensurepip import _PROJECTS [as 別名]
def main():
outofdate = False
for project, version in ensurepip._PROJECTS:
data = json.loads(urllib.request.urlopen(
"https://pypi.python.org/pypi/{}/json".format(project),
cadefault=True,
).read().decode("utf8"))
upstream_version = data["info"]["version"]
if version != upstream_version:
outofdate = True
print("The latest version of {} on PyPI is {}, but ensurepip "
"has {}".format(project, upstream_version, version))
if outofdate:
sys.exit(1)
示例3: main
# 需要導入模塊: import ensurepip [as 別名]
# 或者: from ensurepip import _PROJECTS [as 別名]
def main():
outofdate = False
for project, version in ensurepip._PROJECTS:
data = json.loads(urllib.request.urlopen(
"https://pypi.org/pypi/{}/json".format(project),
cadefault=True,
).read().decode("utf8"))
upstream_version = data["info"]["version"]
if version != upstream_version:
outofdate = True
print("The latest version of {} on PyPI is {}, but ensurepip "
"has {}".format(project, upstream_version, version))
if outofdate:
sys.exit(1)