API-json格式、API-shell格式

发布时间:2020-08-08 05:09:28 作者:1350368559
来源:网络 阅读:1088

一、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'



推荐阅读:
  1. select 格式
  2. printf 格式

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

json 格式 api

上一篇:中日翻译在线翻译如何利用日语翻译软件完成

下一篇:Win7系统一直提示盗版怎么办【系统天地】

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》