在bash for循环中组合python脚本时出错

时间:2014-05-04 08:57:47

标签: python bash

警告:对python来说很新

我正在尝试连接存储在$ {INSTANCE_IPS [@]}数组中的一系列IP地址。我正在尝试使用for循环来使用python脚本为数组中的每个IP地址调用API。

但是,在尝试运行以下脚本时,我收到错误:

Traceback (most recent call last):
File "<stdin>", line 12, in <module>
TypeError: unsupported operand type(s) for +: 'NoneType' and 'str'
Traceback (most recent call last):
File "<stdin>", line 12, in <module>
TypeError: unsupported operand type(s) for +: 'NoneType' and 'str'

我确定我可以在python中进行for循环但是我还没有学到这一点,而且目前只需要让它工作。如果我只使用阵列中的一个IP地址,它运行正常。

for instance in ${INSTANCE_IPS[@]}
do
  echo "Connecting to $instance"

  /usr/bin/python << END_OF_PYTHON

  import requests
  import json
  import sys
  import socket
  import fnmatch
  import os

  ipaddress = os.getenv('instance')
  print ipaddress

  port = ':80'
  updatedipaddress = ipaddress +port
  print 'updated ip address is ' + updatedipaddress

  add_node = updatedipaddress

  print 'add_node is ' + add_node

  url = 'https://' + os.getenv('instance') + ':9070/api/tm/1.0/config/active/pools/' + 'aol_http'
  print 'url is ' + url
  jsontype = {'content-type': 'application/json'}
  client = requests.Session()
  client.auth = ('username', 'password')
  client.verify = 0

  response = client.get(url)
  print response
  pools = json.loads(response.content)
  nodes = pools['properties']['basic']['nodes']

  data = nodes
  data.append(unicode(add_node))

  client.put(url,json.dumps(pools), headers=jsontype)
  END_OF_PYTHON
done  

任何帮助我找出错误的地方都会受到赞赏。

干杯

1 个答案:

答案 0 :(得分:5)

bash变量instance未传递给子进程。你必须在启动python代码之前导出它。这可以在关于ipaddress + port的错误消息中看到,因为ipdadress是NoneType,意味着os.getenv()不起作用。

for instance in ${INSTANCE_IPS[@]}
do
  echo "Connecting to $instance"
  export instance

  /usr/bin/python << END_OF_PYTHON
   [...]