溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

API-json格式、API-shell格式

發(fā)布時(shí)間:2020-08-08 05:09:28 來(lái)源:網(wǎng)絡(luò) 閱讀:1101 作者:1350368559 欄目:開(kāi)發(fā)技術(shù)

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


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、在視圖里面定義函數(shù)

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

#增加一個(gè)函數(shù),
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訪問(wèn):http://112.65.140.13:8080/hostinfo/getjson/得到Json數(shù)據(jù):

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、在視圖里面定義函數(shù)

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、訪問(wèn)測(cè)試:

訪問(wèn)測(cè)試
[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問(wèn)一下細(xì)節(jié)
推薦閱讀:
  1. select 格式
  2. printf 格式

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI