# 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.9
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.9",
"maintainer_email": null,
"keywords": "development, grimoirelab",
"author": "Bitergia Developers",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/91/11/2240d564aeaa8e7aa72aed478c324c7083419a7227b1e2803f31f82ac7a5/bap_elk_backends-0.5.14.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.9\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.14",
"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": "035825cf91aab3d3214880c446eafa021d19a0a99a73ae3dad00bf9c4a5823b6",
"md5": "39a06c7efe25459339e4df01dc22a9cc",
"sha256": "564d6e4a20204e0dd14280973242fe781b6356e33e2ff342f011f9e9a9c13dfb"
},
"downloads": -1,
"filename": "bap_elk_backends-0.5.14-py3-none-any.whl",
"has_sig": false,
"md5_digest": "39a06c7efe25459339e4df01dc22a9cc",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<4.0,>=3.9",
"size": 25007,
"upload_time": "2024-12-11T12:25:18",
"upload_time_iso_8601": "2024-12-11T12:25:18.890534Z",
"url": "https://files.pythonhosted.org/packages/03/58/25cf91aab3d3214880c446eafa021d19a0a99a73ae3dad00bf9c4a5823b6/bap_elk_backends-0.5.14-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "91112240d564aeaa8e7aa72aed478c324c7083419a7227b1e2803f31f82ac7a5",
"md5": "4e305a882f1987f2e10e59867bb8da74",
"sha256": "ed5ba134eb20db825e7fbfb479eebaa549b760d6bb72b06500e3114640df9e5f"
},
"downloads": -1,
"filename": "bap_elk_backends-0.5.14.tar.gz",
"has_sig": false,
"md5_digest": "4e305a882f1987f2e10e59867bb8da74",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<4.0,>=3.9",
"size": 20314,
"upload_time": "2024-12-11T12:25:22",
"upload_time_iso_8601": "2024-12-11T12:25:22.102907Z",
"url": "https://files.pythonhosted.org/packages/91/11/2240d564aeaa8e7aa72aed478c324c7083419a7227b1e2803f31f82ac7a5/bap_elk_backends-0.5.14.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-11 12:25:22",
"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"
}