Skip to main content

Converts labeled data to xml format

Project description

distxml

Convert labeled data to xml at scale.

Installation

Run the following command:

pip install distxml

Usage

Import the the package and create an instance of XMLConverter with your desired outer xml tag.

from distxml.xml_converter import XMLConverter

xml_con = XMLConverter("Hello")

You now have an XMLConverter object, and if you print it would write <Hello /> to console. Now add data you want within the Hello tags.

data = [
    {'start':'Good morning', 'finish':' Good night'},
    {'finish':' Good evening', 'start':'Good morning again'}
]

xml_con.queue(data)

Now this data is queued in the XMLConverter object, but if you print xml_con, it will still write <Hello /> to console. To solve this, you must compile the data.

xml_con.compile("Greetings")

Now if you print, the console will read

<Hello><Greetings><start>Good morning</start><finish> Good night</finish></Greetings><Greetings><finish> Good evening</finish><start>Good morning again</start></Greetings></Hello>

Finally, to write to a file, just use

xml_con.write_to_file("filepath/file.xml")

And there you go, a new xml file!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

distxml-0.1.1.tar.gz (8.7 kB view hashes)

Uploaded Source

Built Distribution

distxml-0.1.1-py3-none-any.whl (2.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page