Carregar dados json como dicionário python e inserir a chave específica
#!/usr/bin/env python
import json,sys
with open(sys.argv[1]) as f:
for line in f:
data=json.loads(line)
data.pop('url')
json.dump(data,sys.stdout)
print("")
Teste:
$ cat input.txt
{"url":"example.com","text":"blah...blah"}
{"url":"anotherexample.com","text":"blah...blah"}
$ ./pop_json_item.py input.txt
{"text": "blah...blah"}
{"text": "blah...blah"}