kopia lustrzana https://github.com/jcarbaugh/python-webfinger
Python 3 support
rodzic
880fd5f240
commit
52748e92b4
24
webfinger.py
24
webfinger.py
|
@ -149,25 +149,25 @@ if __name__ == '__main__':
|
||||||
|
|
||||||
wf = finger(args.acct, rel=args.rel)
|
wf = finger(args.acct, rel=args.rel)
|
||||||
|
|
||||||
print "--- %s ---" % wf.subject
|
print("--- %s ---" % wf.subject)
|
||||||
|
|
||||||
if args.rel:
|
if args.rel:
|
||||||
|
|
||||||
link = wf.find_link(args.rel)
|
link = wf.find_link(args.rel)
|
||||||
|
|
||||||
if link is None:
|
if link is None:
|
||||||
print "*** Link not found for rel=%s" % args.rel
|
print("*** Link not found for rel=%s" % args.rel)
|
||||||
|
|
||||||
print "%s:\n\t%s" % (link.rel, link.href)
|
print("%s:\n\t%s" % (link.rel, link.href))
|
||||||
|
|
||||||
else:
|
else:
|
||||||
|
|
||||||
print "Activity Streams: ", wf.activity_streams
|
print("Activity Streams: ", wf.activity_streams)
|
||||||
print "Avatar: ", wf.avatar
|
print("Avatar: ", wf.avatar)
|
||||||
print "HCard: ", wf.hcard
|
print("HCard: ", wf.hcard)
|
||||||
print "OpenID: ", wf.open_id
|
print("OpenID: ", wf.open_id)
|
||||||
print "Open Social: ", wf.opensocial
|
print("Open Social: ", wf.opensocial)
|
||||||
print "Portable Contacts: ", wf.portable_contacts
|
print("Portable Contacts: ", wf.portable_contacts)
|
||||||
print "Profile: ", wf.profile
|
print("Profile: ", wf.profile)
|
||||||
print "WebFist: ", wf.webfist
|
print("WebFist: ", wf.webfist)
|
||||||
print "XFN: ", wf.rel("http://gmpg.org/xfn/11")
|
print("XFN: ", wf.rel("http://gmpg.org/xfn/11"))
|
||||||
|
|
Ładowanie…
Reference in New Issue