MSN의 UTF-8 인코딩 문제 질문드립니다..

sadrove의 이미지

파이썬으로 MSN봇을 만들었습니다..
MS윈도우에서는 별 문제없이 잘 돌아가던것이..
리눅스(페도라코어3)로 이식하면서 인코딩 문제에서 이상하게 됩니다..
글자가 모조리 깨져 나옵니다..
기존(MS윈도우)에는 아래와 같이 메시지를 보냈었거든요..
self.sock.send(buf)

MSN은 UTF-8을 사용하는 것으로 알고 있습니다.
혹시나 해서 아래와 같이 했더니..아예 소켓이 예외처리 되어 버리네요..
self.sock.send(buf.encode('utf-8'))
조언 부탁드립니다..꾸벅..

익명 사용자의 이미지

self.sock.send(buf.decode('euc-kr').encode('utf-8'))
sadrove의 이미지

알려주신대로해도 역시 소켓 예외처리가 일어나네요..ㅠ.ㅠ..
혹시나 해서.. 메시지를 전송하는 메쏘드 부분을 올립니다..
환경은 페도라코어3 입니다.

	def msgSend(self, sendMsg):

		# 만일 메시기 없으면 기본 메시지 내용 보냄
		if(sendMsg == ''):
			sendMsg = '-----' * 15 + '\r\n'
			sendMsg += '[MSN봇입니다.]\r\n'
			sendMsg += '-----' * 15 + '\r\n'
	
		# 메시지 헤더 구성
		sendMsging = 'MIME-Version: 1.0\r\n'
		sendMsging += 'Content-Type: text/plain; charset=UTF-8\r\n'
		sendMsging += 'X-MMS-IM-Format: FN=Arial; EF=; CO=f85c30; CS=81; PF=22\r\n\r\n'

		sendMsging += sendMsg			# 서버에 보낼 패킷 구성/
		packet = SendPacket('MSG')
		trid = self.getTrid()
		packet.add(trid)
		packet.add('N')
		packet.add(str(len(sendMsging))+'\r\n' + sendMsging)
		print self.objectname + '[SEND:' + str(self.sock.fileno()) + '] ' + sendMsging
		buf = packet.toSend()
		self.sock.send(buf.decode('euc-kr').encode('utf-8'))
sadrove의 이미지

Anonymous wrote:
self.sock.send(buf.decode('euc-kr').encode('utf-8'))

다시 해보니..

Quote:
LookupError: unknown encoding: euc-kr

라는 에러메시지가 뜹니다..
페도라에서 euc-kr을 인식하지 못하는건가요..?..
^^;;..
캐릭터셋에 대한 지식이 무지한지라 이해가 잘 안가네요...
도와주세요..... :cry:
송지석의 이미지

파이썬이면 기본으로 Korean(euc-kr) 지원이 안됩니다.
저도 그래서 KoreanCodecs-pure 를 깔았었습니다.(또는 CJKCodecs 를 깔면 됩니다)

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.