使用异常进行 md5 搜索

发布于 2024-10-31 08:52:25 字数 446 浏览 0 评论 0原文

import httplib
import re 

md5 = raw_input('Enter MD5: ') 

conn = httplib.HTTPConnection("www.md5.rednoize.com")
conn.request("GET", "?q="+ md5) 
try:
     response = conn.getresponse()
     data = response.read() 
     result = re.findall('<div id="result" >(.+?)</div', data)
     print result
except:
     print "couldnt find the hash"

raw_input()

我知道我可能执行了错误的代码,但是我应该使用哪个异常?如果找不到哈希,则引发异常并打印“无法找到哈希”

import httplib
import re 

md5 = raw_input('Enter MD5: ') 

conn = httplib.HTTPConnection("www.md5.rednoize.com")
conn.request("GET", "?q="+ md5) 
try:
     response = conn.getresponse()
     data = response.read() 
     result = re.findall('<div id="result" >(.+?)</div', data)
     print result
except:
     print "couldnt find the hash"

raw_input()

I know I'm probably implementing the code wrong, but which exception should I use for this? if it cant find the hash then raise an exception and print "couldnt find the hash"

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你怎么敢 2024-11-07 08:52:25

由于 re.findall 不会引发异常,因此这可能不是您想要检查结果的方式。相反,你可以写类似的东西

result = re.findall('<div id="result" >(.+?)</div', data)
if result:
    print result
else:
    print 'Could not find the hash'

Since re.findall doesn't raise exceptions, that's probably not how you want to check for results. Instead, you could write something like

result = re.findall('<div id="result" >(.+?)</div', data)
if result:
    print result
else:
    print 'Could not find the hash'
月隐月明月朦胧 2024-11-07 08:52:25

如果你真的想有一个例外,你必须定义它:

class MyError(Exception):
   def init(self, value):
       self.value = value
   def str(self):
       return repr(self.value)

<代码>尝试: 响应 = conn.getresponse() 数据 = 响应.read() 结果 = re.findall('(.+?)

If you realy like to have an exception there you have to define it:

class MyError(Exception):
   def init(self, value):
       self.value = value
   def str(self):
       return repr(self.value)

try: response = conn.getresponse() data = response.read() result = re.findall('(.+?)</div', data) if not result: raise MyError("Could not find the hash") except MyError: raise

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文