Quantcast
Channel: Active questions tagged whois - Stack Overflow
Viewing all articles
Browse latest Browse all 46

Why am I getting 'TypeError: a bytes-like object is required, not 'str'' when running my WHOIS script in the Linux terminal?

$
0
0

I am creating a basic "whois" script, but it is not working. When I try to run it in the Linux terminal, it returns the error:

"TypeError: a bytes-like object is required, not 'str'" indicated inthe line of code: s.send(sys.argv[1]+"\r"+"\n").

consulta.py

#!/usr/share/pythonimport socketimport sysimport pyfigletascii_banner = pyfiglet.figlet_format("WHOIS - Gustang")print (ascii_banner)reg = "whois.godaddy.com"if len(sys.argv) == 2:        s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)        s.connect((reg, 43))        s.send(sys.argv[1]+"\r"+"\n")        resp = s.recv(1024)        print (resp)else:        print ("Modo de Uso: IPv4 + Porta")        print ("Exemplo: 255.255.255.255 21")

Viewing all articles
Browse latest Browse all 46

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>