bap-elk-backends


Namebap-elk-backends JSON
Version 0.5.3 PyPI version JSON
download
home_pagehttps://chaoss.github.io/grimoirelab/
SummaryGrimoireELK plugic for public-inbox.
upload_time2024-05-09 13:10:31
maintainerNone
docs_urlNone
authorBitergia Developers
requires_python<4.0,>=3.8
licenseGPL-3.0+
keywords development grimoirelab
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Bitergia Analytics GrimoireELK backends

GrimoireELK backends available in Bitergia Analytics:
### public-inbox

Software for efficiently managing and archiving public mailing
lists using Git repositories.
- `projects.json`
```
{
    "linux": {
        "public_inbox": [
            "linux /path/to/mirror/repository"
        ]
    }
}
```

- `setup.cfg`
```
[public_inbox]
raw_index = public_inbox_raw
enriched_index = public_inbox_enriched
latest-items = false
```

### Topicbox

Email discussion platform that facilitates organized group
communication through dedicated email groups.

- `projects.json`
```
{
    "Example": {
        "topicbox": [
            "https://example.topicbox.com/groups/group-1",
            "https://example.topicbox.com/groups/group-2"
        ]
    }
}
```

- `setup.cfg`
```
[topicbox]
raw_index = topicbox_raw
enriched_index = topicbox_enriched
account-id = xxxx  # Look into the Perceval backend
studies = [ enrich_demography:topicbox ]  # (optional)

[enrich_demography:topicbox]  # (optional)
```

### Pontoon

Web-based localization platform that facilitates collaborative
translation of software and documentation

- `projects.json`
```
{
    "Example": {
        "pontoon": [
            "https://pontoon.mozilla.org af",
            "https://pontoon.mozilla.org es"
        ]
    }
}
```

- `setup.cfg`
```
[pontoon]
raw_index = pontoon_raw
enriched_index = pontoon_enriched
studies = [ enrich_demography:pontoon ]  # (optional)

[enrich_demography:pontoon]  # (optional)
```


## Requirements

 * Python >= 3.8

You will also need some other libraries for running the tool, you can find the
whole list of dependencies in [pyproject.toml](pyproject.toml) file.

## Installation

There are several ways to install grimoire-elk-public-inbox on your system: packages or source 
code using Poetry or pip.

### PyPI

grimoire-elk-public-inbox can be installed using pip, a tool for installing Python packages. 
To do it, run the next command:
```
$ pip install grimoire-elk-public-inbox
```

### Source code

To install from the source code you will need to clone the repository first:
```
$ git clone https://github.com/bitergia-analytics/grimoirelab-elk-public-inbox
$ cd grimoirelab-elk-public-inbox
```

Then use pip or Poetry to install the package along with its dependencies.

#### Pip
To install the package from local directory run the following command:
```
$ pip install .
```
In case you are a developer, you should install grimoire-elk-public-inbox in editable mode:
```
$ pip install -e .
```

#### Poetry
We use [poetry](https://python-poetry.org/) for dependency management and 
packaging. You can install it following its [documentation](https://python-poetry.org/docs/#installation).
Once you have installed it, you can install grimoire-elk-public-inbox and the dependencies in 
a project isolated environment using:
```
$ poetry install
```
To spaw a new shell within the virtual environment use:
```
$ poetry shell
```

## License

Licensed under GNU General Public License (GPL), version 3 or later.

            

Raw data

            {
    "_id": null,
    "home_page": "https://chaoss.github.io/grimoirelab/",
    "name": "bap-elk-backends",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.8",
    "maintainer_email": null,
    "keywords": "development, grimoirelab",
    "author": "Bitergia Developers",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/e5/bf/cf63a9868520dec1ef5937932465e22aaa826a0026775e22a6cbd6a2033b/bap_elk_backends-0.5.3.tar.gz",
    "platform": null,
    "description": "# Bitergia Analytics GrimoireELK backends\n\nGrimoireELK backends available in Bitergia Analytics:\n### public-inbox\n\nSoftware for efficiently managing and archiving public mailing\nlists using Git repositories.\n- `projects.json`\n```\n{\n    \"linux\": {\n        \"public_inbox\": [\n            \"linux /path/to/mirror/repository\"\n        ]\n    }\n}\n```\n\n- `setup.cfg`\n```\n[public_inbox]\nraw_index = public_inbox_raw\nenriched_index = public_inbox_enriched\nlatest-items = false\n```\n\n### Topicbox\n\nEmail discussion platform that facilitates organized group\ncommunication through dedicated email groups.\n\n- `projects.json`\n```\n{\n    \"Example\": {\n        \"topicbox\": [\n            \"https://example.topicbox.com/groups/group-1\",\n            \"https://example.topicbox.com/groups/group-2\"\n        ]\n    }\n}\n```\n\n- `setup.cfg`\n```\n[topicbox]\nraw_index = topicbox_raw\nenriched_index = topicbox_enriched\naccount-id = xxxx  # Look into the Perceval backend\nstudies = [ enrich_demography:topicbox ]  # (optional)\n\n[enrich_demography:topicbox]  # (optional)\n```\n\n### Pontoon\n\nWeb-based localization platform that facilitates collaborative\ntranslation of software and documentation\n\n- `projects.json`\n```\n{\n    \"Example\": {\n        \"pontoon\": [\n            \"https://pontoon.mozilla.org af\",\n            \"https://pontoon.mozilla.org es\"\n        ]\n    }\n}\n```\n\n- `setup.cfg`\n```\n[pontoon]\nraw_index = pontoon_raw\nenriched_index = pontoon_enriched\nstudies = [ enrich_demography:pontoon ]  # (optional)\n\n[enrich_demography:pontoon]  # (optional)\n```\n\n\n## Requirements\n\n * Python >= 3.8\n\nYou will also need some other libraries for running the tool, you can find the\nwhole list of dependencies in [pyproject.toml](pyproject.toml) file.\n\n## Installation\n\nThere are several ways to install grimoire-elk-public-inbox on your system: packages or source \ncode using Poetry or pip.\n\n### PyPI\n\ngrimoire-elk-public-inbox can be installed using pip, a tool for installing Python packages. \nTo do it, run the next command:\n```\n$ pip install grimoire-elk-public-inbox\n```\n\n### Source code\n\nTo install from the source code you will need to clone the repository first:\n```\n$ git clone https://github.com/bitergia-analytics/grimoirelab-elk-public-inbox\n$ cd grimoirelab-elk-public-inbox\n```\n\nThen use pip or Poetry to install the package along with its dependencies.\n\n#### Pip\nTo install the package from local directory run the following command:\n```\n$ pip install .\n```\nIn case you are a developer, you should install grimoire-elk-public-inbox in editable mode:\n```\n$ pip install -e .\n```\n\n#### Poetry\nWe use [poetry](https://python-poetry.org/) for dependency management and \npackaging. You can install it following its [documentation](https://python-poetry.org/docs/#installation).\nOnce you have installed it, you can install grimoire-elk-public-inbox and the dependencies in \na project isolated environment using:\n```\n$ poetry install\n```\nTo spaw a new shell within the virtual environment use:\n```\n$ poetry shell\n```\n\n## License\n\nLicensed under GNU General Public License (GPL), version 3 or later.\n",
    "bugtrack_url": null,
    "license": "GPL-3.0+",
    "summary": "GrimoireELK plugic for public-inbox.",
    "version": "0.5.3",
    "project_urls": {
        "Bug Tracker": "https://github.com/bitergia-analytics/bitergia-analytics-elk-backends/issues",
        "Homepage": "https://chaoss.github.io/grimoirelab/",
        "Repository": "https://github.com/bitergia-analytics/bitergia-analytics-elk-backends"
    },
    "split_keywords": [
        "development",
        " grimoirelab"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2eca59bf7d689a06ae7a49a4bdda5426d2a94f1577e1d65c8244a44d070471ae",
                "md5": "cda442cdfa3c2e72e2014839f8a6dde7",
                "sha256": "0f83e136d8f680dc51fc7cc442634034d0eb4d02553ae07e6a4eb7699b30a9c4"
            },
            "downloads": -1,
            "filename": "bap_elk_backends-0.5.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "cda442cdfa3c2e72e2014839f8a6dde7",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.8",
            "size": 25057,
            "upload_time": "2024-05-09T13:10:30",
            "upload_time_iso_8601": "2024-05-09T13:10:30.318751Z",
            "url": "https://files.pythonhosted.org/packages/2e/ca/59bf7d689a06ae7a49a4bdda5426d2a94f1577e1d65c8244a44d070471ae/bap_elk_backends-0.5.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e5bfcf63a9868520dec1ef5937932465e22aaa826a0026775e22a6cbd6a2033b",
                "md5": "c6e64f426011470916b2cde5b6dbfd00",
                "sha256": "19573896eeb370f765a259d48b084a0918d526baf51d4dca91db1a72c90200d2"
            },
            "downloads": -1,
            "filename": "bap_elk_backends-0.5.3.tar.gz",
            "has_sig": false,
            "md5_digest": "c6e64f426011470916b2cde5b6dbfd00",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.8",
            "size": 20283,
            "upload_time": "2024-05-09T13:10:31",
            "upload_time_iso_8601": "2024-05-09T13:10:31.883060Z",
            "url": "https://files.pythonhosted.org/packages/e5/bf/cf63a9868520dec1ef5937932465e22aaa826a0026775e22a6cbd6a2033b/bap_elk_backends-0.5.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-09 13:10:31",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "bitergia-analytics",
    "github_project": "bitergia-analytics-elk-backends",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "bap-elk-backends"
}
        
Elapsed time: 0.24427s