本文整理汇总了Python中portalpy.Portal.info方法的典型用法代码示例。如果您正苦于以下问题:Python Portal.info方法的具体用法?Python Portal.info怎么用?Python Portal.info使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类portalpy.Portal
的用法示例。
在下文中一共展示了Portal.info方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: portal_info_plus
# 需要导入模块: from portalpy import Portal [as 别名]
# 或者: from portalpy.Portal import info [as 别名]
def portal_info_plus():
portal = Portal('http://portaldev.esri.com')
print portal.info()
pprint(portal.properties())
pprint(portal.languages())
pprint(portal.regions())
pprint(portal.basemaps(['title']))
pprint(portal.color_sets(['title']))
pprint(portal.featured_items(['title']))
pprint(portal.featured_items_homepage(['title']))
pprint(portal.feature_collection_templates(['title']))
pprint(portal.symbol_sets(['title']))
pprint(portal.gallery_templates(['title']))
pprint(portal.webmap_templates(['title']))
示例2: portal_info
# 需要导入模块: from portalpy import Portal [as 别名]
# 或者: from portalpy.Portal import info [as 别名]
def portal_info():
portal = Portal('http://portaldev.esri.com')
print portal.info()
示例3: proxy_through_fiddler
# 需要导入模块: from portalpy import Portal [as 别名]
# 或者: from portalpy.Portal import info [as 别名]
def proxy_through_fiddler():
portal = Portal('http://www.arcgis.com', proxy_host='localhost', proxy_port=8888)
print portal.info()