프밍일기

v2 에서 v3 로 버전업 되면서 변경된 라이브러리 정리 본문

Python

v2 에서 v3 로 버전업 되면서 변경된 라이브러리 정리

스에조theLED 2018. 3. 5. 23:36

파이썬은 v2 에서 v3로 넘어가면서 많은 부분이 바뀌면서 하위버전 호환을 포기하였다.

v3를 설치했는데 보고있는 책이 v2 기준이다...

라이브러리가 뭐가 어떻게 바뀌었는지를 확인하려니 일일이 클릭질을 해야한다...

한눈에 확인해볼 수 있는 자료를 찾을수가 없다...

그래서 공식사이트에서 찾아서 정리해봤다.


영역

v2

v3

File and Directory Access

statvfs

Deprecated

dircache

Deprecated

Data Persistence

copy_reg

copyreg

anydbm

dbm

whichdb

dbm

dbm

dbm.ndbm

gdbm

dbm.gnu

dbhash

Deprecated

bsddb

Deprecated

dumbdbm

dbm.dumb

File Formats

ConfigParser

configparser

robotparser

urllib.robotparser

Optional Operating System Services

thread

_thread

dummy_thread

_dummy_thread

interprocess Communication and Networking

popen2

Deprecated

Internet Data Handling

mhlib

Deprecated

Structured Markup Processing Tools

HTMLParser

html.parser

gmllib

Deprecated

htmllib

html.parser

htmlentitydefs

html.entities

Internet Protocols and Support

urllib

urllib.request
urllib.parse
urllib.error

urllib2.urlopen()

urllib.request.urlopen()

urllib.urlopen()

Deprecated

urllib2

urllib.request
urllib.error

httplib

http.client

urlparse

urllib.parse

SocketServer

socketserver

BaseHTTPServer

http.server

SimpleHTTPServer

http.server

CGIHTTPServer

http.server

cookielib

http.cookiejar

Cookie

http.cookies

xmlrpclib

xmlrpc.client

SimpleXMLRPCServer 

xmlrpc.serverr

DocXMLRPCServer

xmlrpc.server

Multimedia Services

imageop

Deprecated

Graphical User Interfaces with Tk 

Tkinter

tkinter

Tix

tkinter.tix 

ScrolledText

tkinter.scrolledtext

Development Tools

test.test_support

test.support

Python Runtime Services

user

Deprecated

Restricted Execution

rexec

Deprecated

Bastion

Deprecated

Importing Modules

imputil

Deprecated

MS Windows Specific Services

_winreg

winreg

dl

ctypes

Unix Specific Services

commands

subprocess

Mac OS X specific services

ic

Deprecated

acOS

Deprecated

macostools

Deprecated

EasyDialogs

Deprecated

FrameWork

Deprecated

autoGIL

Deprecated

ColorPicker

Deprecated

MacPython OSA Modules

aetools

Deprecated

aepack

Deprecated

aetypes

Deprecated

SGI IRIX Specific Services

al

Deprecated

AL

Deprecated

cd

Deprecated

fl

Deprecated

FL

Deprecated

flp

Deprecated

fm 

Deprecated

gl

Deprecated

DEVICE

Deprecated

GL

Deprecated

imgfile

Deprecated

jpeg

Deprecated

SunOS Specific Services

sunaudiodev

Deprecated

SUNAUDIODEV

Deprecated

Undocumented Mac OS modules

applesingle

Deprecated

buildtools

Deprecated

cfmfile

Deprecated

icopen

Deprecated

macerrors

Deprecated

macresource

Deprecated

Nav

Deprecated

PixMapWrapper

Deprecated

videoreader

Deprecated

W

Deprecated


파이썬_버전별라이브러리비교.xlsx




'Python' 카테고리의 다른 글

[Python3] 프로젝트 구성을 위한 환경변수 설정  (0) 2019.11.05
Comments