Is there a way to query the DNS for a particular a txt record given the domain name from app engine .. I looked into pydns, but then “socket” is not available on app engine ..
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You cannot use sockets from AppEngine; you can only use higher level interfaces (namely http/https through
urllib).You could use an existing website / web service such as this (queried via urllib):
http://www.kloth.net/services/nslookup.php
But it’s a bit of a kludge.