Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4617308
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T02:06:22+00:00 2026-05-22T02:06:22+00:00

Working with sockets in python 2.7, and I’ve encountered a Type error as follows:

  • 0

Working with sockets in python 2.7, and I’ve encountered a Type error as follows:

TypeError: coercing to Unicode: need string or buffer, instance found.

I’m sure this has something to do with the differences between python2 and python3 in terms of unicode. But I’m not familiar enough with the differences to narrow down how to fix the problem. I’m sure I know where the problem is, but I google has failed to assist me in finding a solution. Here’s the code segment I’m having problems with.

from IPy import IP
ip = IP(sys.argv[1])
for x in ip:
    s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    svr = (x, 25)
    s.connect(svr)
    data = s.recv(2048)
    s.close()
    print(repr(data))

Here is the exact printout of the error:

Traceback (most recent call last):
File "relayscanner.py", line 17, in <module>
s.connect(tgt)
File "C:\Python27\lib\socket.py", line 222, in meth
return getattr(self._sock,name)(*args)
TypeError: coercing to Unicode: need string or buffer, instance found
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T02:06:23+00:00Added an answer on May 22, 2026 at 2:06 am

    I think the problem is that you are giving socket.connect() an IPy.IP object, but it expects a string. Try coercing it to a string first, IE:

    svr = (str(x), 25)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hey I'm working on a python project using sockets. Basically I want to loop
I'm working with socket in python, and being in development stage I need to
While working with the sockets library in python 2.7, I am encountering an issue
I have very little experience working with sockets and multithreaded programming so to learn
I'm trying to get Python socket working as an alternative to calling the command
Why isn't this simple Python code working? import urllib file = urllib.urlopen('http://www.google.com') print file.read()
I'm working on a twisted tutorial just to learn more python and it seems
I'm working with a product that has a built-in Jython 2.2 instance. It comes
I am working with sockets. Here are my codes (the description of problem is
I am working on some Python socket code that's using the socket.fromfd() function. However,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.