xmlJoiner


NamexmlJoiner JSON
Version 0.1.1 PyPI version JSON
download
home_page
SummaryESA EDDS XML Telemetry joiner
upload_time2023-10-12 08:09:36
maintainer
docs_urlNone
author
requires_python
licenseGNU GPL ver3
keywords esa space mission telemetry
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # xmlJoiner

Join two or more PARC Telemetry files downloaded from ESA EDDS.

## Installation

To install the reader you can use the command:

```console
$ python3 -m pip install xmlJoiner
```

## Usage

To join all the XML files *myxml_01.xmlr* and *myxml_02.xml* in a single file called *myxml.xml* you can use the command:

```console
$ xmlJoin myxml01.xml myxml_02.xml -o myxml.xml
``````

You can join also directly all the files in a folder:

```console
$ xmlJoin -f myfolder -o myfolder.xml
```

**N.B.:** be careful the file are sorted alphabetically. if they are numered the file #10 is befre the file #2. Please check the order using the command 

```console
$ xmlJoin -f myfolder --show-list
```
and change the file names if it is necessary.

You can use it also as library:

```python
from xmlJoiner import xmlJoin

xmlJoin(fileList, "joined.xml",verbose=True)
```

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "xmlJoiner",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "ESA,Space Mission,Telemetry",
    "author": "",
    "author_email": "Romolo Politi <Romolo.Politi@inaf.it>",
    "download_url": "https://files.pythonhosted.org/packages/6a/55/3af983a94a2980c0e789217f44dd43266c5e4d221554f545a3793852d55e/xmlJoiner-0.1.1.tar.gz",
    "platform": null,
    "description": "# xmlJoiner\n\nJoin two or more PARC Telemetry files downloaded from ESA EDDS.\n\n## Installation\n\nTo install the reader you can use the command:\n\n```console\n$ python3 -m pip install xmlJoiner\n```\n\n## Usage\n\nTo join all the XML files *myxml_01.xmlr* and *myxml_02.xml* in a single file called *myxml.xml* you can use the command:\n\n```console\n$ xmlJoin myxml01.xml myxml_02.xml -o myxml.xml\n``````\n\nYou can join also directly all the files in a folder:\n\n```console\n$ xmlJoin -f myfolder -o myfolder.xml\n```\n\n**N.B.:** be careful the file are sorted alphabetically. if they are numered the file #10 is befre the file #2. Please check the order using the command \n\n```console\n$ xmlJoin -f myfolder --show-list\n```\nand change the file names if it is necessary.\n\nYou can use it also as library:\n\n```python\nfrom xmlJoiner import xmlJoin\n\nxmlJoin(fileList, \"joined.xml\",verbose=True)\n```\n",
    "bugtrack_url": null,
    "license": "GNU GPL ver3",
    "summary": "ESA EDDS XML Telemetry joiner",
    "version": "0.1.1",
    "project_urls": {
        "Repository": "https://github.com/RomoloPoliti-INAF/xmlJoiner"
    },
    "split_keywords": [
        "esa",
        "space mission",
        "telemetry"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ffdcc42b37b95c1c9033521004f59a403f8e424d5286545aa805b862de63326c",
                "md5": "d5d453fe142ff76edab10ceb3b8395e0",
                "sha256": "2ba16612656ef148ae17b0db8180b5c255329545fddd8dd508cec3fc2b0b7063"
            },
            "downloads": -1,
            "filename": "xmlJoiner-0.1.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "d5d453fe142ff76edab10ceb3b8395e0",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 19300,
            "upload_time": "2023-10-12T08:09:34",
            "upload_time_iso_8601": "2023-10-12T08:09:34.986835Z",
            "url": "https://files.pythonhosted.org/packages/ff/dc/c42b37b95c1c9033521004f59a403f8e424d5286545aa805b862de63326c/xmlJoiner-0.1.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a553af983a94a2980c0e789217f44dd43266c5e4d221554f545a3793852d55e",
                "md5": "fb4a66abcd20baa676e67a169acdec98",
                "sha256": "93f5e19d125506a1dab55052e97fb8315a33d1c9b6b0dbbaa7a4dd170a524913"
            },
            "downloads": -1,
            "filename": "xmlJoiner-0.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "fb4a66abcd20baa676e67a169acdec98",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 18846,
            "upload_time": "2023-10-12T08:09:36",
            "upload_time_iso_8601": "2023-10-12T08:09:36.189403Z",
            "url": "https://files.pythonhosted.org/packages/6a/55/3af983a94a2980c0e789217f44dd43266c5e4d221554f545a3793852d55e/xmlJoiner-0.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-12 08:09:36",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "RomoloPoliti-INAF",
    "github_project": "xmlJoiner",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "xmljoiner"
}
        
Elapsed time: 0.12879s