91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

API-json格式、API-shell格式

發布時間:2020-08-08 05:09:28 來源:網絡 閱讀:1102 作者:1350368559 欄目:開發技術

一、API-json格式 (應用程序接口)


1、添加url:hostinfo/getjson/

[root@133 simplecmdb-json]# vim /opt/python/django/simplecmdb-json/simplecmdb/urls.py
from django.conf.urls import patterns, include, url

from django.contrib import admin
admin.autodiscover()

urlpatterns = patterns('',
    # Examples:
    # url(r'^$', 'simplecmdb.views.home', name='home'),
    # url(r'^blog/', include('blog.urls')),

    url(r'^admin/', include(admin.site.urls)),
    url(r'^hostinfo/collect/$','hostinfo.views.collect'),
    url(r'^hostinfo/getjson/$','hostinfo.views.getjson'),
)


2、在視圖里面定義函數

[root@133 simplecmdb-json]# vim /opt/python/django/simplecmdb-json/hostinfo/views.py
from hostinfo.models import Host,HostGroup #需要倒入HostGroup

#增加一個函數,
def getjson(req):
    ret_list = []
    hg = HostGroup.objects.all()
    for g in hg:
        ret = {'groupname':g.groupname,'members':[]}
        for h in g.members.all():
            ret_h = {'hostname':h.hostname,'ip':h.ip}
            ret['members'].append(ret_h)
        ret_list.append(ret)
    return HttpResponse(json.dumps(ret_list))

3、web訪問:http://112.65.140.13:8080/hostinfo/getjson/得到Json數據:

API-json格式、API-shell格式

[root@133 simplecmdb-json]# curl http://112.65.140.133:8080/hostinfo/getjson/
[{"groupname": "group1", "members": [{"ip": "112.65.140.132", "hostname": "localhost.localdomain"}, {"ip": "192.168.1.168", "hostname": "test"}]}, {"groupname": "group2", "members": []}]

In [5]: import urllib,urllib2

In [6]: urllib2.urlopen('http://112.65.140.133:8080/hostinfo/getjson/')
Out[6]: <addinfourl at 33716920 whose fp = <socket._fileobject object at 0x1fc33d0>>

In [7]: req = urllib2.urlopen('http://112.65.140.133:8080/hostinfo/getjson/')

In [8]: req.read()
Out[8]: '[{"groupname": "group1", "members": [{"ip": "112.65.140.132", "hostname": "localhost.localdomain"}, {"ip": "192.168.1.168", "hostname": "test"}]}, {"groupname": "group2", "members": []}]'

In [9]: req.read()
Out[9]: ''
In [1]: import json
In [3]: req = urllib2.urlopen('http://112.65.140.133:8080/hostinfo/getjson/')
In [4]: data = req.read()
In [11]: d = json.loads(data)
In [12]: d
Out[12]:
[{u'groupname': u'group1',
  u'members': [{u'hostname': u'localhost.localdomain',
    u'ip': u'112.65.140.132'},
   {u'hostname': u'test', u'ip': u'192.168.1.168'}]},
 {u'groupname': u'group2', u'members': []}]
 
 In [13]: for i in d : print i
{u'groupname': u'group1', u'members': [{u'ip': u'112.65.140.132', u'hostname': u'localhost.localdomain'}, {u'ip': u'192.168.1.168', u'hostname': u'test'}]}
{u'groupname': u'group2', u'members': []}

二、API-shell格式

方法相同

1、添加url:hostinfo/getshell/

[root@133 simplecmdb-json]# vim /opt/python/django/simplecmdb-json/simplecmdb/urls.py
from django.conf.urls import patterns, include, url

from django.contrib import admin
admin.autodiscover()

urlpatterns = patterns('',
    # Examples:
    # url(r'^$', 'simplecmdb.views.home', name='home'),
    # url(r'^blog/', include('blog.urls')),

    url(r'^admin/', include(admin.site.urls)),
    url(r'^hostinfo/collect/$','hostinfo.views.collect'),
    url(r'^hostinfo/getjson/$','hostinfo.views.getjson'),
    url(r'^hostinfo/getshell/$','hostinfo.views.getshell'),
)


2、在視圖里面定義函數

vim /opt/python/django/simplecmdb-json/hostinfo/views.py
 
#增加getshell的方法:
 def getshell(req):
    res = ''
    hg = HostGroup.objects.all()
    for g in hg:
        groupname = g.groupname
        for h in g.members.all():
            hostname = h.hostname
            ip = h.ip
            res += groupname+' '+hostname+' '+ip +'\n'
    return HttpResponse(res)


3、訪問測試:

訪問測試
[root@133 simplecmdb-json]# curl http://112.65.140.133:8080/hostinfo/getshell/
group1 localhost.localdomain 112.65.140.132
group1 test 192.168.1.168

In [1]: import urllib,urllib2

In [2]: urllib2.urlopen('http://112.65.140.133:8080/hostinfo/getshell/')
Out[2]: <addinfourl at 33701040 whose fp = <socket._fileobject object at 0x1e74150>>

In [3]: req = urllib2.urlopen('http://112.65.140.133:8080/hostinfo/getshell/')

In [4]: req.read()
Out[4]: 'group1 localhost.localdomain 112.65.140.132\ngroup1 test 192.168.1.168\n'



向AI問一下細節
推薦閱讀:
  1. select 格式
  2. printf 格式

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

荃湾区| 久治县| 乌拉特后旗| 延庆县| 进贤县| 洛隆县| 阳朔县| 柘荣县| 岢岚县| 罗江县| 宁安市| 南丹县| 彰武县| 虞城县| 安岳县| 乐亭县| 乌拉特前旗| 桐柏县| 罗源县| 奉贤区| 上犹县| 方正县| 乌拉特后旗| 忻城县| 永康市| 凤台县| 大姚县| 中方县| 晋城| 甘肃省| 张家川| 涡阳县| 都昌县| 永年县| 钦州市| 余姚市| 万山特区| 漳平市| 陵水| 普兰店市| 富顺县|