Python for Lazy Persons

>>> help(‘modules’)
Systemy
cmd
netbios
this
__future__
code
netrc
threading
_ast
codecs
nntplib
time
_bisect
codeop
nt
timeit
_bz2
collections
ntpath
timer
_codecs
colorsys
ntsecuritycon
tkinter
_codecs_cn
commctrl
nturl2path
token
_codecs_hk
compileall
numbers
tokenize
_codecs_iso2022
concurrent
odbc
trace
_codecs_jp
configparser
opcode
traceback
_codecs_kr
contextlib
operator
tty
_codecs_tw
copy
optparse
turtle
_collections
copyreg
os
turtledemo
_compat_pickle
crypt
os2emxpath
types
_csv
csv
parser
unicodedata
_ctypes
ctypes
pdb
unittest
_ctypes_test
curses
perfmon
urllib
_datetime
datetime
pickle
uu
_decimal
dbi
pickletools
uuid
_dummy_thread
dbm
pipes
venv
_elementtree
dde
pkgutil
warnings
_functools
decimal
platform
wave
_hashlib
difflib
plistlib
weakref
_heapq
dis
poplib
webbrowser
_imp
distutils
posixpath
win2kras
_io
django
pprint
win32api
_json
doctest
profile
win32clipboard
_locale
dummy_threading
prostokat
win32com
_lsprof
easygui
prostokat1
win32con
_lzma
email
pstats
win32console
_markupbase
encodings
pty
win32cred
_md5
errno
py_compile
win32crypt
_msi
faulthandler
pyclbr
win32cryptcon
_multibytecodec
filecmp
pydoc
win32event
_multiprocessing
fileinput
pydoc_data
win32evtlog
_osx_support
fnmatch
pyexpat
win32evtlogutil
_pickle
formatter
pythoncom
win32file
_pyio
fractions
pywin
win32gui
_random
ftplib
pywin32_testutil
win32gui_struct
_sha1
functools
pywintypes
win32help
_sha256
gc
queue
win32inet
_sha512
genericpath
quopri
win32inetcon
_socket
getopt
random
win32job
_sqlite3
getpass
rasutil
win32lz
_sre
gettext
re
win32net
_ssl
glob
regcheck
win32netcon
_string
gzip
regutil
win32pdh
_strptime
hashlib
reprlib
win32pdhquery
_struct
heapq
rlcompleter
win32pdhutil
_symtable
hmac
runpy
win32pipe
_testbuffer
html
sched
win32print
_testcapi
http
select
win32process
_thread
idlelib
servicemanager
win32profile
_threading_local
imaplib
shelve
win32ras
_tkinter
imghdr
shlex
win32rcparser
_warnings
imp
shutil
win32security
_weakref
importlib
signal
win32service
_weakrefset
inspect
site
win32serviceuti
_win32sysloader
io
smtpd
win32timezone
_winapi
ipaddress
smtplib
win32trace
_winxptheme
isapi
sndhdr
win32traceutil
abc
itertools
socket
win32transactio
adodbapi
json
socketserver
win32ts
afxres
keyword
sqlite3
win32ui
aifc
lib2to3
sre_compile
win32uiole
antigravity
linecache
sre_constants
win32verstamp
argparse
lista
sre_parse
win32wnet
array
lista1
ssl
winerror
ast
lista2
sspi
winioctlcon
asynchat
locale
sspicon
winnt
asyncore
logging
stat
winperf
atexit
lzma
string
winreg
audioop
macpath
stringprep
winsound
base64
macurl2path
struct
winxpgui
bdb
mailbox
subprocess
winxptheme
binascii
mailcap
sunau
wsgiref
binhex
marshal
symbol
xdrlib
bisect
math
symtable
xml
builtins
mimetypes
sys
xmlrpc
bz2
mmap
sysconfig
xxsubtype
cProfile
mmapfile
tabnanny
zipfile
calendar
mmsystem
tarfile
zipimport
cgi
modulefinder
telnetlib
zlib
cgitb
msilib
tempfile
zwierz
chunk
msvcrt
test
cmath
multiprocessing
textwrap

Enter any module name to get more help. Or, type “modules spam” to search
for modules whose descriptions contain the word “spam”.

>>>
If you want to see the modules you have *import*ed (directly or indirectly),
>>> import sys
>>> print(sys.modules)

Leave a comment