kopia lustrzana https://github.com/jcarbaugh/python-webfinger
move xrd import so install works
rodzic
adc391d8a9
commit
c57f388b20
|
@ -1,4 +1,3 @@
|
||||||
from xrd import XRD
|
|
||||||
import urllib, urllib2
|
import urllib, urllib2
|
||||||
|
|
||||||
__version__ = '0.1'
|
__version__ = '0.1'
|
||||||
|
@ -57,9 +56,13 @@ class WebFingerClient(object):
|
||||||
return hosts
|
return hosts
|
||||||
|
|
||||||
def xrd(self, url, raw=False):
|
def xrd(self, url, raw=False):
|
||||||
|
|
||||||
|
from xrd import XRD
|
||||||
|
|
||||||
conn = self._opener.open(url, timeout=self._timeout)
|
conn = self._opener.open(url, timeout=self._timeout)
|
||||||
response = conn.read()
|
response = conn.read()
|
||||||
conn.close()
|
conn.close()
|
||||||
|
|
||||||
return response if raw else XRD.parse(response)
|
return response if raw else XRD.parse(response)
|
||||||
|
|
||||||
def hostmeta(self, protocol):
|
def hostmeta(self, protocol):
|
||||||
|
|
Ładowanie…
Reference in New Issue