ogdrb 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. ogdrb-0.1.0/.all-contributorsrc +16 -0
  2. ogdrb-0.1.0/.cruft.json +28 -0
  3. ogdrb-0.1.0/.editorconfig +27 -0
  4. ogdrb-0.1.0/.github/ISSUE_TEMPLATE/bug_report.md +26 -0
  5. ogdrb-0.1.0/.github/ISSUE_TEMPLATE/config.yml +4 -0
  6. ogdrb-0.1.0/.github/ISSUE_TEMPLATE/feature_request.md +19 -0
  7. ogdrb-0.1.0/.github/workflows/ci.yml +40 -0
  8. ogdrb-0.1.0/.github/workflows/codecov_action.yml +43 -0
  9. ogdrb-0.1.0/.github/workflows/semantic-release.yml +42 -0
  10. ogdrb-0.1.0/.gitignore +163 -0
  11. ogdrb-0.1.0/.pre-commit-config.yaml +10 -0
  12. ogdrb-0.1.0/.python-version +1 -0
  13. ogdrb-0.1.0/.python-versions +1 -0
  14. ogdrb-0.1.0/.readthedocs.yaml +23 -0
  15. ogdrb-0.1.0/LICENSE +21 -0
  16. ogdrb-0.1.0/PKG-INFO +175 -0
  17. ogdrb-0.1.0/asv.conf.json +20 -0
  18. ogdrb-0.1.0/benchmarks/__init__.py +1 -0
  19. ogdrb-0.1.0/benchmarks/benchmarks.py +27 -0
  20. ogdrb-0.1.0/docs/CHANGELOG.md +25 -0
  21. ogdrb-0.1.0/docs/CODE_OF_CONDUCT.md +133 -0
  22. ogdrb-0.1.0/docs/CONTRIBUTING.md +292 -0
  23. ogdrb-0.1.0/docs/Makefile +20 -0
  24. ogdrb-0.1.0/docs/README.md +145 -0
  25. ogdrb-0.1.0/docs/__init__.py +1 -0
  26. ogdrb-0.1.0/docs/_static/.gitignore +0 -0
  27. ogdrb-0.1.0/docs/_templates/.gitignore +0 -0
  28. ogdrb-0.1.0/docs/conf.py +76 -0
  29. ogdrb-0.1.0/docs/index.rst +22 -0
  30. ogdrb-0.1.0/docs/make.bat +35 -0
  31. ogdrb-0.1.0/docs/reference.md +116 -0
  32. ogdrb-0.1.0/docs/wordlist.txt +61 -0
  33. ogdrb-0.1.0/noxfile.py +90 -0
  34. ogdrb-0.1.0/playground/.gitignore +3 -0
  35. ogdrb-0.1.0/playground/examples.ipynb +80 -0
  36. ogdrb-0.1.0/pyproject.toml +169 -0
  37. ogdrb-0.1.0/src/ogdrb/__init__.py +73 -0
  38. ogdrb-0.1.0/src/ogdrb/converters.py +86 -0
  39. ogdrb-0.1.0/src/ogdrb/py.typed +0 -0
  40. ogdrb-0.1.0/src/ogdrb/services.py +81 -0
  41. ogdrb-0.1.0/src/ogdrb/utils.py +87 -0
  42. ogdrb-0.1.0/tests/__init__.py +1 -0
  43. ogdrb-0.1.0/tests/test_ogdrb.py +5 -0
  44. ogdrb-0.1.0/uv.lock +2028 -0
@@ -0,0 +1,16 @@
1
+ {
2
+ "files": [
3
+ "docs/README.md"
4
+ ],
5
+ "imageSize": 100,
6
+ "commit": false,
7
+ "contributors": [
8
+ ],
9
+ "contributorsPerLine": 7,
10
+ "badgeTemplate": "[badge-all-contributors]: https://img.shields.io/badge/all_contributors-<%= contributors.length %>-orange.svg?style=flat-square",
11
+ "projectName": "ogdrb",
12
+ "projectOwner": "MicaelJarniac",
13
+ "repoType": "github",
14
+ "repoHost": "https://github.com",
15
+ "skipCi": true
16
+ }
@@ -0,0 +1,28 @@
1
+ {
2
+ "template": "https://github.com/MicaelJarniac/crustypy",
3
+ "commit": "3af00654de427f00c49ac2f2281ff3522f0b7416",
4
+ "checkout": null,
5
+ "context": {
6
+ "cookiecutter": {
7
+ "full_name": "Micael Jarniac",
8
+ "email": "micael@jarniac.dev",
9
+ "github_username": "MicaelJarniac",
10
+ "year": "2025",
11
+ "project_name": "OGDRB",
12
+ "project_slug": "ogdrb",
13
+ "project_distribution_name": "ogdrb",
14
+ "project_short_description": "OpenGD77 + RepeaterBook",
15
+ "version": "0.0.0",
16
+ "main_branch": "main",
17
+ "shields_url": "https://img.shields.io",
18
+ "discord_invite": "Ye9yJtZQuN",
19
+ "report_method": "micael@jarniac.dev",
20
+ "__github_path": "MicaelJarniac/ogdrb",
21
+ "__github_url": "https://github.com/MicaelJarniac/ogdrb",
22
+ "__readthedocs_name": "ogdrb",
23
+ "_template": "https://github.com/MicaelJarniac/crustypy",
24
+ "_commit": "3af00654de427f00c49ac2f2281ff3522f0b7416"
25
+ }
26
+ },
27
+ "directory": null
28
+ }
@@ -0,0 +1,27 @@
1
+ # EditorConfig is awesome: https://EditorConfig.org
2
+
3
+ # Top-most EditorConfig file
4
+ root = true
5
+
6
+ # Unix-style newlines with a newline ending every file
7
+ [*]
8
+ end_of_line = lf
9
+ insert_final_newline = true
10
+
11
+ [*.{py}]
12
+ charset = utf-8
13
+
14
+ [*.py]
15
+ indent_style = space
16
+ indent_size = 4
17
+
18
+ [*.md]
19
+ indent_style = space
20
+ indent_size = 2
21
+
22
+ [*.{yml, yaml}]
23
+ indent_style = space
24
+ indent_size = 2
25
+
26
+ [Makefile]
27
+ indent_style = tab
@@ -0,0 +1,26 @@
1
+ ---
2
+ name: Bug report
3
+ about: Create a report to help us improve
4
+ # title: "[BUG]"
5
+ labels: bug
6
+
7
+ ---
8
+
9
+ ### Describe the bug
10
+ A clear and concise description of what the bug is.
11
+
12
+ ### To reproduce
13
+ Steps to reproduce the behavior:
14
+ 1. Go to '...'
15
+ 2. Click on '....'
16
+ 3. Scroll down to '....'
17
+ 4. See error
18
+
19
+ ### Expected behavior
20
+ A clear and concise description of what you expected to happen.
21
+
22
+ ### Screenshots
23
+ If applicable, add screenshots to help explain your problem.
24
+
25
+ ### Additional context
26
+ Add any other context about the problem here.
@@ -0,0 +1,4 @@
1
+ contact_links:
2
+ - name: Discord
3
+ url: https://discord.gg/Ye9yJtZQuN
4
+ about: Please ask and answer questions here.
@@ -0,0 +1,19 @@
1
+ ---
2
+ name: Feature request
3
+ about: Suggest an idea for this project
4
+ # title: "[FEAT]"
5
+ labels: enhancement
6
+
7
+ ---
8
+
9
+ **Is your feature request related to a problem? Please describe.**
10
+ A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
11
+
12
+ **Describe the solution you'd like**
13
+ A clear and concise description of what you want to happen.
14
+
15
+ **Describe alternatives you've considered**
16
+ A clear and concise description of any alternative solutions or features you've considered.
17
+
18
+ **Additional context**
19
+ Add any other context or screenshots about the feature request here.
@@ -0,0 +1,40 @@
1
+ name: CI
2
+
3
+ on:
4
+ pull_request:
5
+ push:
6
+ branches:
7
+ - main
8
+ - rc
9
+
10
+ env:
11
+ FORCE_COLOR: 1
12
+ PRE_COMMIT_COLOR: "always" # https://github.com/pre-commit/pre-commit/issues/2918
13
+
14
+ jobs:
15
+ generate-jobs:
16
+ name: Generate Session Jobs
17
+ runs-on: ubuntu-latest
18
+ outputs:
19
+ session: ${{ steps.set-matrix.outputs.session }}
20
+ steps:
21
+ - uses: actions/checkout@v4
22
+ - uses: wntrblm/nox@main
23
+ - id: set-matrix
24
+ shell: bash
25
+ run: echo session=$(nox --json -l | jq -c '[.[].session]') | tee --append $GITHUB_OUTPUT
26
+ sessions:
27
+ name: Session ${{ matrix.session }}
28
+ needs: [generate-jobs]
29
+ runs-on: ubuntu-latest
30
+ strategy:
31
+ fail-fast: false
32
+ matrix:
33
+ session: ${{ fromJson(needs.generate-jobs.outputs.session) }}
34
+ steps:
35
+ - uses: actions/checkout@v4
36
+ - uses: astral-sh/setup-uv@v5
37
+ with:
38
+ enable-cache: true
39
+ - uses: wntrblm/nox@main
40
+ - run: nox -s "${{ matrix.session }}"
@@ -0,0 +1,43 @@
1
+ name: Codecov
2
+
3
+ on:
4
+ pull_request:
5
+ push:
6
+ branches:
7
+ - main
8
+ - rc
9
+
10
+ jobs:
11
+ run:
12
+ runs-on: ubuntu-latest
13
+
14
+ permissions:
15
+ id-token: write
16
+ contents: read
17
+
18
+ steps:
19
+ - uses: actions/checkout@v4
20
+
21
+ - name: Install uv
22
+ uses: astral-sh/setup-uv@v5
23
+ with:
24
+ enable-cache: true
25
+
26
+ - name: Set up Python
27
+ uses: actions/setup-python@v5
28
+ with:
29
+ python-version-file: ".python-version"
30
+
31
+ - name: Install project
32
+ run: uv sync --all-extras --no-default-groups --group tests
33
+
34
+ - name: Generate coverage report
35
+ run: |
36
+ uv run pytest --cov --cov-report=xml
37
+
38
+ - name: Upload coverage to Codecov
39
+ uses: codecov/codecov-action@v5
40
+ with:
41
+ use_oidc: true
42
+ files: ./coverage.xml
43
+ flags: unittests
@@ -0,0 +1,42 @@
1
+ name: Semantic Release
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+ - rc
8
+
9
+ jobs:
10
+ Release:
11
+ runs-on: ubuntu-latest
12
+ concurrency: release
13
+
14
+ permissions:
15
+ id-token: write
16
+ contents: write
17
+
18
+ steps:
19
+ - uses: actions/checkout@v4
20
+ with:
21
+ fetch-depth: 0
22
+ ref: ${{ github.sha }}
23
+
24
+ - run: |
25
+ git checkout -B ${{ github.ref_name }} ${{ github.sha }}
26
+
27
+ - name: Python Semantic Release
28
+ id: release
29
+ uses: python-semantic-release/python-semantic-release@v9.19.1
30
+ with:
31
+ github_token: ${{ secrets.GITHUB_TOKEN }}
32
+
33
+ - name: Publish package to GitHub
34
+ uses: python-semantic-release/publish-action@v9.19.1
35
+ if: steps.release.outputs.released == 'true'
36
+ with:
37
+ github_token: ${{ secrets.GITHUB_TOKEN }}
38
+ tag: ${{ steps.release.outputs.tag }}
39
+
40
+ - name: Publish to PyPI
41
+ uses: pypa/gh-action-pypi-publish@release/v1
42
+ if: steps.release.outputs.released == 'true'
ogdrb-0.1.0/.gitignore ADDED
@@ -0,0 +1,163 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py,cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ .pybuilder/
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+
81
+ # IPython
82
+ profile_default/
83
+ ipython_config.py
84
+
85
+ # pyenv
86
+ # For a library or package, you might want to ignore these files since the code is
87
+ # intended to run in multiple environments; otherwise, check them in:
88
+ # .python-version
89
+
90
+ # pipenv
91
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
93
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
94
+ # install all needed dependencies.
95
+ #Pipfile.lock
96
+
97
+ # poetry
98
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
99
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
100
+ # commonly ignored for libraries.
101
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102
+ #poetry.lock
103
+
104
+ # pdm
105
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
106
+ #pdm.lock
107
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
108
+ # in version control.
109
+ # https://pdm.fming.dev/#use-with-ide
110
+ .pdm.toml
111
+
112
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
113
+ __pypackages__/
114
+
115
+ # Celery stuff
116
+ celerybeat-schedule
117
+ celerybeat.pid
118
+
119
+ # SageMath parsed files
120
+ *.sage.py
121
+
122
+ # Environments
123
+ .env
124
+ .venv
125
+ env/
126
+ venv/
127
+ ENV/
128
+ env.bak/
129
+ venv.bak/
130
+
131
+ # Spyder project settings
132
+ .spyderproject
133
+ .spyproject
134
+
135
+ # Rope project settings
136
+ .ropeproject
137
+
138
+ # mkdocs documentation
139
+ /site
140
+
141
+ # mypy
142
+ .mypy_cache/
143
+ .dmypy.json
144
+ dmypy.json
145
+
146
+ # Pyre type checker
147
+ .pyre/
148
+
149
+ # pytype static type analyzer
150
+ .pytype/
151
+
152
+ # Cython debug symbols
153
+ cython_debug/
154
+
155
+ # PyCharm
156
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
157
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
158
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
159
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
160
+ #.idea/
161
+
162
+ # Ruff
163
+ .ruff_cache/
@@ -0,0 +1,10 @@
1
+ repos:
2
+ - repo: https://github.com/pre-commit/pre-commit-hooks
3
+ rev: 'v5.0.0'
4
+ hooks:
5
+ - id: check-toml
6
+ - id: check-yaml
7
+ - id: check-json
8
+ - id: end-of-file-fixer
9
+ - id: trailing-whitespace
10
+ - id: requirements-txt-fixer
@@ -0,0 +1 @@
1
+ 3.13
@@ -0,0 +1 @@
1
+ 3.13
@@ -0,0 +1,23 @@
1
+ version: 2
2
+
3
+ build:
4
+ os: "ubuntu-lts-latest"
5
+ tools:
6
+ python: "latest"
7
+ jobs:
8
+ # https://docs.readthedocs.com/platform/stable/build-customization.html#install-dependencies-with-uv
9
+ create_environment:
10
+ - asdf plugin add uv
11
+ - asdf install uv latest
12
+ - asdf global uv latest
13
+ - uv venv $READTHEDOCS_VIRTUALENV_PATH
14
+ install:
15
+ - UV_PROJECT_ENVIRONMENT=$READTHEDOCS_VIRTUALENV_PATH uv sync --all-extras --no-default-groups --group docs
16
+
17
+ # Build from the docs/ directory with Sphinx
18
+ sphinx:
19
+ configuration: docs/conf.py
20
+
21
+ formats:
22
+ - pdf
23
+ - epub
ogdrb-0.1.0/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Micael Jarniac
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
ogdrb-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,175 @@
1
+ Metadata-Version: 2.4
2
+ Name: ogdrb
3
+ Version: 0.1.0
4
+ Summary: OpenGD77 + RepeaterBook
5
+ Project-URL: homepage, https://github.com/MicaelJarniac/ogdrb
6
+ Project-URL: source, https://github.com/MicaelJarniac/ogdrb
7
+ Project-URL: download, https://pypi.org/project/ogdrb/#files
8
+ Project-URL: changelog, https://github.com/MicaelJarniac/ogdrb/blob/main/docs/CHANGELOG.md
9
+ Project-URL: documentation, https://ogdrb.readthedocs.io
10
+ Project-URL: issues, https://github.com/MicaelJarniac/ogdrb/issues
11
+ Author-email: Micael Jarniac <micael@jarniac.dev>
12
+ License: MIT
13
+ License-File: LICENSE
14
+ Classifier: Development Status :: 1 - Planning
15
+ Classifier: License :: OSI Approved :: MIT License
16
+ Classifier: Natural Language :: English
17
+ Classifier: Operating System :: OS Independent
18
+ Classifier: Programming Language :: Python :: 3
19
+ Classifier: Typing :: Typed
20
+ Requires-Python: >=3.13
21
+ Requires-Dist: anyio>=4.9.0
22
+ Requires-Dist: attrs>=25.3.0
23
+ Requires-Dist: haversine>=2.9.0
24
+ Requires-Dist: loguru>=0.7.3
25
+ Requires-Dist: opengd77>=0.2.1
26
+ Requires-Dist: pycountry>=24.6.1
27
+ Requires-Dist: repeaterbook>=0.2.1
28
+ Requires-Dist: sqlmodel>=0.0.24
29
+ Description-Content-Type: text/markdown
30
+
31
+ <div align="center">
32
+
33
+ [![Discord][badge-chat]][chat]
34
+ <br>
35
+ <br>
36
+
37
+ | | ![Badges][label-badges] |
38
+ |:-|:-|
39
+ | ![Build][label-build] | [![Nox][badge-actions]][actions] [![semantic-release][badge-semantic-release]][semantic-release] [![PyPI][badge-pypi]][pypi] [![Read the Docs][badge-docs]][docs] |
40
+ | ![Tests][label-tests] | [![coverage][badge-coverage]][coverage] [![pre-commit][badge-pre-commit]][pre-commit] [![asv][badge-asv]][asv] |
41
+ | ![Standards][label-standards] | [![SemVer 2.0.0][badge-semver]][semver] [![Conventional Commits][badge-conventional-commits]][conventional-commits] |
42
+ | ![Code][label-code] | [![uv][badge-uv]][uv] [![Ruff][badge-ruff]][ruff] [![Nox][badge-nox]][nox] [![Checked with mypy][badge-mypy]][mypy] |
43
+ | ![Repo][label-repo] | [![GitHub issues][badge-issues]][issues] [![GitHub stars][badge-stars]][stars] [![GitHub license][badge-license]][license] [![All Contributors][badge-all-contributors]][contributors] [![Contributor Covenant][badge-code-of-conduct]][code-of-conduct] |
44
+ </div>
45
+
46
+ <!-- Badges -->
47
+ [badge-chat]: https://img.shields.io/badge/dynamic/json?color=green&label=chat&query=%24.approximate_presence_count&suffix=%20online&logo=discord&style=flat-square&url=https%3A%2F%2Fdiscord.com%2Fapi%2Fv10%2Finvites%2FYe9yJtZQuN%3Fwith_counts%3Dtrue
48
+ [chat]: https://discord.gg/Ye9yJtZQuN
49
+
50
+ <!-- Labels -->
51
+ [label-badges]: https://img.shields.io/badge/%F0%9F%94%96-badges-purple?style=for-the-badge
52
+ [label-build]: https://img.shields.io/badge/%F0%9F%94%A7-build-darkblue?style=flat-square
53
+ [label-tests]: https://img.shields.io/badge/%F0%9F%A7%AA-tests-darkblue?style=flat-square
54
+ [label-standards]: https://img.shields.io/badge/%F0%9F%93%91-standards-darkblue?style=flat-square
55
+ [label-code]: https://img.shields.io/badge/%F0%9F%92%BB-code-darkblue?style=flat-square
56
+ [label-repo]: https://img.shields.io/badge/%F0%9F%93%81-repo-darkblue?style=flat-square
57
+
58
+ <!-- Build -->
59
+ [badge-actions]: https://img.shields.io/github/actions/workflow/status/MicaelJarniac/ogdrb/ci.yml?branch=main&style=flat-square
60
+ [actions]: https://github.com/MicaelJarniac/ogdrb/actions
61
+ [badge-semantic-release]: https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079?style=flat-square
62
+ [semantic-release]: https://github.com/semantic-release/semantic-release
63
+ [badge-pypi]: https://img.shields.io/pypi/v/ogdrb?style=flat-square
64
+ [pypi]: https://pypi.org/project/ogdrb
65
+ [badge-docs]: https://img.shields.io/readthedocs/ogdrb?style=flat-square
66
+ [docs]: https://ogdrb.readthedocs.io
67
+
68
+ <!-- Tests -->
69
+ [badge-coverage]: https://img.shields.io/codecov/c/gh/MicaelJarniac/ogdrb?logo=codecov&style=flat-square
70
+ [coverage]: https://codecov.io/gh/MicaelJarniac/ogdrb
71
+ [badge-pre-commit]: https://img.shields.io/badge/pre--commit-enabled-brightgreen?style=flat-square&logo=pre-commit&logoColor=white
72
+ [pre-commit]: https://github.com/pre-commit/pre-commit
73
+ [badge-asv]: https://img.shields.io/badge/benchmarked%20by-asv-blue?style=flat-square
74
+ [asv]: https://github.com/airspeed-velocity/asv
75
+
76
+ <!-- Standards -->
77
+ [badge-semver]: https://img.shields.io/badge/SemVer-2.0.0-blue?style=flat-square&logo=semver
78
+ [semver]: https://semver.org/spec/v2.0.0.html
79
+ [badge-conventional-commits]: https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow?style=flat-square
80
+ [conventional-commits]: https://conventionalcommits.org
81
+
82
+ <!-- Code -->
83
+ [badge-uv]: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/uv/main/assets/badge/v0.json&style=flat-square
84
+ [uv]: https://github.com/astral-sh/uv
85
+ [badge-ruff]: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json&style=flat-square
86
+ [ruff]: https://github.com/astral-sh/ruff
87
+ [badge-nox]: https://img.shields.io/badge/%F0%9F%A6%8A-Nox-D85E00.svg?style=flat-square
88
+ [nox]: https://github.com/wntrblm/nox
89
+ [badge-mypy]: https://img.shields.io/badge/mypy-checked-2A6DB2?style=flat-square
90
+ [mypy]: http://mypy-lang.org
91
+
92
+ <!-- Repo -->
93
+ [badge-issues]: https://img.shields.io/github/issues/MicaelJarniac/ogdrb?style=flat-square
94
+ [issues]: https://github.com/MicaelJarniac/ogdrb/issues
95
+ [badge-stars]: https://img.shields.io/github/stars/MicaelJarniac/ogdrb?style=flat-square
96
+ [stars]: https://github.com/MicaelJarniac/ogdrb/stargazers
97
+ [badge-license]: https://img.shields.io/github/license/MicaelJarniac/ogdrb?style=flat-square
98
+ [license]: https://github.com/MicaelJarniac/ogdrb/blob/main/LICENSE
99
+ <!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
100
+ [badge-all-contributors]: https://img.shields.io/badge/all_contributors-0-orange.svg?style=flat-square
101
+ <!-- ALL-CONTRIBUTORS-BADGE:END -->
102
+ [contributors]: #Contributors-✨
103
+ [badge-code-of-conduct]: https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa?style=flat-square
104
+ [code-of-conduct]: CODE_OF_CONDUCT.md
105
+ <!---->
106
+
107
+ # OGDRB
108
+ OpenGD77 + RepeaterBook
109
+
110
+ [Read the Docs][docs]
111
+
112
+ ## Related Projects
113
+ - https://github.com/MicaelJarniac/repeaterbook
114
+ - https://github.com/MicaelJarniac/opengd77
115
+
116
+ ## See Also
117
+ - https://github.com/afourney/hamkit/tree/main/packages/repeaterbook
118
+ - https://github.com/desertblade/OpenGD77-Repeaterbook
119
+ - https://github.com/TomHW/OpenGD77
120
+
121
+ ## Installation
122
+
123
+ ### PyPI
124
+ [*ogdrb*][pypi] is available on PyPI:
125
+
126
+ ```bash
127
+ # With uv
128
+ uv add ogdrb
129
+ # With pip
130
+ pip install ogdrb
131
+ # With Poetry
132
+ poetry add ogdrb
133
+ ```
134
+
135
+ ### GitHub
136
+ You can also install the latest version of the code directly from GitHub:
137
+ ```bash
138
+ # With uv
139
+ uv add git+https://github.com/MicaelJarniac/ogdrb
140
+ # With pip
141
+ pip install git+git://github.com/MicaelJarniac/ogdrb
142
+ # With Poetry
143
+ poetry add git+git://github.com/MicaelJarniac/ogdrb
144
+ ```
145
+
146
+ ## Usage
147
+ For more examples, see the [full documentation][docs].
148
+
149
+ ```python
150
+ from ogdrb import ogdrb
151
+ ```
152
+
153
+ ## Contributing
154
+ Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
155
+
156
+ Please make sure to update tests as appropriate.
157
+
158
+ More details can be found in [CONTRIBUTING](CONTRIBUTING.md).
159
+
160
+ ## Contributors ✨
161
+ <!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
162
+ <!-- prettier-ignore-start -->
163
+ <!-- markdownlint-disable -->
164
+ <table>
165
+ </table>
166
+
167
+ <!-- markdownlint-restore -->
168
+ <!-- prettier-ignore-end -->
169
+
170
+ <!-- ALL-CONTRIBUTORS-LIST:END -->
171
+
172
+ ## License
173
+ [MIT](../LICENSE)
174
+
175
+ This project was created with the [MicaelJarniac/crustypy](https://github.com/MicaelJarniac/crustypy) template.
@@ -0,0 +1,20 @@
1
+ {
2
+ "version": 1,
3
+ "project": "ogdrb",
4
+ "project_url": "https://github.com/MicaelJarniac/ogdrb",
5
+ "repo": ".",
6
+ "build_command": [
7
+ "python -m build --wheel -o {build_cache_dir} {build_dir}"
8
+ ],
9
+ "branches": ["main"],
10
+ "environment_type": "virtualenv",
11
+ "show_commit_url": "https://github.com/MicaelJarniac/ogdrb/commit/",
12
+ "matrix": {
13
+ "req": {
14
+ "build": []
15
+ }
16
+ },
17
+ "env_dir": ".asv/env",
18
+ "results_dir": ".asv/results",
19
+ "html_dir": ".asv/html"
20
+ }
@@ -0,0 +1 @@
1
+ """Benchmarking for ogdrb."""