blob: f60b297b48ba881a8cffa388bedcc5da2804380e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# dummy file for now
import apt_pkg
# import some fancy classes
from apt.package import Package
from apt.cache import Cache
from apt.progress import OpProgress, FetchProgress, InstallProgress, CdromProgress
from apt_pkg import SizeToStr, VersionCompare
# init the package system
apt_pkg.init()
|