mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-06 21:00:22 +00:00
39 lines
1.2 KiB
Python
39 lines
1.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2011 Tomo Krajina
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
|
|
__version__ = '1.3.5'
|
|
|
|
def parse(xml_or_file, version = None):
|
|
"""
|
|
Parse xml (string) or file object. This is just an wrapper for
|
|
GPXParser.parse() function.
|
|
|
|
parser may be 'lxml', 'minidom' or None (then it will be automatically
|
|
detected, lxml if possible).
|
|
|
|
xml_or_file must be the xml to parse or a file-object with the XML.
|
|
|
|
version may be '1.0', '1.1' or None (then it will be read from the gpx
|
|
xml node if possible, if not then version 1.0 will be used).
|
|
"""
|
|
|
|
from . import parser as mod_parser
|
|
|
|
parser = mod_parser.GPXParser(xml_or_file)
|
|
|
|
return parser.parse(version)
|