代码拉取完成,页面将自动刷新
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Copyright 2019 Grand Joldes ([email protected]).
#
# This file is Copyright 2019 by the GPSD project
#
# SPDX-License-Identifier: BSD-2-clause
# This code runs only under Python 3.x for x >= 6.
"""
Script that runs the aiogps example. On Python versions that can not run the
example it displays a message and exits.
"""
import sys
if __name__ == "__main__":
# aiogps only available on Python >= 3.6
if sys.version_info >= (3, 6):
import example_aiogps
example_aiogps.run()
else:
sys.exit("Sorry, aiogps is only available for Python versions >= 3.6")
# vim: set expandtab shiftwidth=4
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。