如何使用python apt模块删除ppa?

时间:2017-04-20 03:51:59

标签: python ubuntu apt

我可以使用它添加ppa但无法删除。我找不到从sources.list中删除ppa的正确语法。这是我的代码:

import aptsources.sourceslist as s
repo = ('deb', 'http://ppa.launchpad.net/danielrichter2007/grub-customizer/ubuntu', 'xenial', ['main'])
sources = s.SourcesList()
sources.add(repo)
sources.save()

#doesn't work 
sources.remove(repo)

我尝试阅读here找到的文档,但我仍然找不到调用sources.remove(repo)的格式

2 个答案:

答案 0 :(得分:1)

SourcesList.remove()帮助文本显示remove(source_entry),表示它想要的是SourceEntry对象。在它成功的时候,sources.add()会返回一个SourceEntry对象:

import aptsources.sourceslist as sl

sources = sl.SourcesList()
entry = sources.add('deb', 'mirror://mirrors.ubuntu.com/mirrors.txt', 'xenial', ['main'])
print(type(entry))

输出:

<class 'aptsources.sourceslist.SourceEntry'>

删除条目:

sources.remove(entry)
sources.save()

您也可以将其停用(这会在sources.list中留下注释掉的条目:

entry.set_enabled(False)
sources.save()

答案 1 :(得分:0)

我现在用这个去除。

import fileinput 

filename = '/etc/apt/sources.list'
word = 'grub-customizer'
n = ""
remove = fileinput.input(filename, inplace=1)
for line in remove:
    if word in line:
       line = n
    line.strip()
    print line,
remove.close()