Salve a tutti,<div>sto usando questo package:</div><div><a href="http://packages.python.org/psphere/tutorial.html">http://packages.python.org/psphere/tutorial.html</a>
</div><div><br></div><div>e nel tutorial sono fermo a questo punto</div><div><br></div><div><pre style="overflow:auto;font-family:Consolas,'Deja Vu Sans Mono','Bitstream Vera Sans Mono',monospace;font-size:0.95em;line-height:15px;padding:0.5em;border:1px solid rgb(204,204,204);background-color:rgb(248,248,248)">
<span class="gp" style="color:rgb(198,93,9);font-weight:bold">>>> </span><span class="kn" style="color:rgb(0,112,32);font-weight:bold">from</span> <span class="nn" style="color:rgb(14,132,181);font-weight:bold">psphere.client</span> <span class="kn" style="color:rgb(0,112,32);font-weight:bold">import</span> <span class="n">Client</span>
<span class="gp" style="color:rgb(198,93,9);font-weight:bold">>>> </span><span class="kn" style="color:rgb(0,112,32);font-weight:bold">from</span> <span class="nn" style="color:rgb(14,132,181);font-weight:bold">psphere.managedobjects</span> <span class="kn" style="color:rgb(0,112,32);font-weight:bold">import</span> <span class="n">VirtualMachine</span>
<span class="gp" style="color:rgb(198,93,9);font-weight:bold">>>> </span><span class="n">client</span> <span class="o" style="color:rgb(102,102,102)">=</span> <span class="n">Client</span><span class="p">(</span><span class="s" style="color:rgb(64,112,160)">"<a href="http://your.esxserver.com">your.esxserver.com</a>"</span><span class="p">,</span> <span class="s" style="color:rgb(64,112,160)">"Administrator"</span><span class="p">,</span> <span class="s" style="color:rgb(64,112,160)">"strongpass"</span><span class="p">)</span>
<span class="gp" style="color:rgb(198,93,9);font-weight:bold">>>> </span><span class="n">vm</span> <span class="o" style="color:rgb(102,102,102)">=</span> <span class="n">VirtualMachine</span><span class="o" style="color:rgb(102,102,102)">.</span><span class="n">get</span><span class="p">(</span><span class="n">client</span><span class="p">,</span> <span class="n">name</span><span class="o" style="color:rgb(102,102,102)">=</span><span class="s" style="color:rgb(64,112,160)">"genesis"</span><span class="p">)</span></pre>
</div><div>e ottengo l'errore in oggetto:</div><div><br></div><div><div>>>> vm = VirtualMachine.get(client, name="genesis")</div><div>Traceback (most recent call last):</div><div>  File "<stdin>", line 1, in <module></div>
<div>  File "C:\Python27\lib\site-packages\psphere-0.5.1-py2.7.egg\psphere\managedobjects.py", line 133, in get    return client.find_entity_view(cls.__name__,filter=filter, properties=properties)</div><div>  File "C:\Python27\lib\site-packages\psphere-0.5.1-py2.7.egg\psphere\client.py", line 585, in find_entity_view    obj_contents = self.sc.propertyCollector.RetrieveProperties(specSet=pfs)</div>
<div>  File "C:\Python27\lib\site-packages\psphere-0.5.1-py2.7.egg\psphere\__init__.py", line 352, in func    **kwargs)</div><div>  File "C:\Python27\lib\site-packages\psphere-0.5.1-py2.7.egg\psphere\client.py", line 198, in invoke    new_result.append(self._unmarshal(item))</div>
<div>  File "C:\Python27\lib\site-packages\psphere-0.5.1-py2.7.egg\psphere\client.py", line 265, in _unmarshal    new_emb_obj = self._unmarshal(emb_obj)</div><div>  File "C:\Python27\lib\site-packages\psphere-0.5.1-py2.7.egg\psphere\client.py", line 260, in _unmarshal    logger.debug("Looking at %s of type %s" % (str(sub_obj), type(sub_obj)))</div>
<div>UnicodeEncodeError: 'ascii' codec can't encode character u'\u200c' in position 0</div><div>: ordinal not in range(128)</div></div><div><br></div><div><br></div><div><br></div><div>alla riga 259-260 del file client.py ho questo codice:</div>
<div><div>        for sub_obj in obj:</div><div>            logger.debug("Looking at %s of type %s" % (str(sub_obj), type(sub_obj)))</div></div><div><br></div><div><br></div><div>qualcuno mi può aiutare?</div><div>
<br></div><div><br></div><div><br></div>