blob: c6a2ff39e673f7a91b9553b37d0d5311288ed5a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# import the core of apt_pkg
import apt_pkg
import sys
import os
# import some fancy classes
from apt.package import Package
from apt.cache import Cache
from apt.progress import OpProgress, FetchProgress, InstallProgress, CdromProgress
from apt.cdrom import Cdrom
from apt_pkg import SizeToStr, TimeToStr, VersionCompare
# init the package system
apt_pkg.init()
import warnings
warnings.warn("apt API not stable yet", FutureWarning)
del warnings
|