Socket
Socket
Sign inDemoInstall

speedyxml

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

speedyxml

Speedy XML parser for Python


Maintainers
1

Usage is fairly straightforward:

import speedyxml
xml = speedyxml.parse('<xml><test this="now" /></xml>')

Will result in:

(
	u'xml', 
	None, 
	[
		(
			u'test', 
			{u'this': u'now'}, 
			None
		)
	]
)

So basically its:

(nodeName, attributes, children)

Plus some options (second argument to parse)

FLAG_EXPANDEMPTY

	If you want empty attributes and children to be {} and [] instead of None, use this

FLAG_RETURNCOMMENTS

	Return comments as:

	(TAG_COMMENT, None, u' comment ')

FLAG_RETURNPI

	Returns processing instructions as:

	(TAG_PI, {u'name': u'php'}, u'phpinfo();')

FLAG_IGNOREENTITIES
	
	does not resolve entities when set

And one exception:

XMLParseException

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc