Skip to content

Instantly share code, notes, and snippets.

@Bjwebb
Created June 27, 2014 12:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Bjwebb/a18e9455ae0203551914 to your computer and use it in GitHub Desktop.
Save Bjwebb/a18e9455ae0203551914 to your computer and use it in GitHub Desktop.
from lxml import etree
root = etree.parse('csvconv.xml')
for activity in root.findall('iati-activity'):
for transaction in activity.findall('transaction'):
if transaction.find('value').text is None:
activity.remove(transaction)
root.write('transactions_removed.xml')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment