napari-ome-arrow 0.0.2__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 (30) hide show
  1. napari_ome_arrow-0.0.2/.github/ISSUE_TEMPLATE/issue.yml +46 -0
  2. napari_ome_arrow-0.0.2/.github/PULL_REQUEST_TEMPLATE.md +37 -0
  3. napari_ome_arrow-0.0.2/.github/dependabot.yml +25 -0
  4. napari_ome_arrow-0.0.2/.github/release-drafter.yml +21 -0
  5. napari_ome_arrow-0.0.2/.github/workflows/draft-release.yml +23 -0
  6. napari_ome_arrow-0.0.2/.github/workflows/publish-pypi.yml +33 -0
  7. napari_ome_arrow-0.0.2/.github/workflows/run-tests.yml +56 -0
  8. napari_ome_arrow-0.0.2/.gitignore +84 -0
  9. napari_ome_arrow-0.0.2/.napari-hub/config.yml +41 -0
  10. napari_ome_arrow-0.0.2/.pre-commit-config.yaml +62 -0
  11. napari_ome_arrow-0.0.2/CITATION.cff +62 -0
  12. napari_ome_arrow-0.0.2/CODE_OF_CONDUCT.md +132 -0
  13. napari_ome_arrow-0.0.2/CONTRIBUTING.md +114 -0
  14. napari_ome_arrow-0.0.2/LICENSE +28 -0
  15. napari_ome_arrow-0.0.2/MANIFEST.in +5 -0
  16. napari_ome_arrow-0.0.2/PKG-INFO +197 -0
  17. napari_ome_arrow-0.0.2/README.md +128 -0
  18. napari_ome_arrow-0.0.2/pyproject.toml +131 -0
  19. napari_ome_arrow-0.0.2/setup.cfg +4 -0
  20. napari_ome_arrow-0.0.2/src/napari_ome_arrow/__init__.py +15 -0
  21. napari_ome_arrow-0.0.2/src/napari_ome_arrow/_reader.py +331 -0
  22. napari_ome_arrow-0.0.2/src/napari_ome_arrow/_version.py +34 -0
  23. napari_ome_arrow-0.0.2/src/napari_ome_arrow/napari.yaml +23 -0
  24. napari_ome_arrow-0.0.2/src/napari_ome_arrow.egg-info/PKG-INFO +197 -0
  25. napari_ome_arrow-0.0.2/src/napari_ome_arrow.egg-info/SOURCES.txt +28 -0
  26. napari_ome_arrow-0.0.2/src/napari_ome_arrow.egg-info/dependency_links.txt +1 -0
  27. napari_ome_arrow-0.0.2/src/napari_ome_arrow.egg-info/entry_points.txt +2 -0
  28. napari_ome_arrow-0.0.2/src/napari_ome_arrow.egg-info/requires.txt +19 -0
  29. napari_ome_arrow-0.0.2/src/napari_ome_arrow.egg-info/top_level.txt +1 -0
  30. napari_ome_arrow-0.0.2/uv.lock +4388 -0
@@ -0,0 +1,46 @@
1
+ # GitHub Issue template for bug reports
2
+ name: Open a GitHub issue
3
+ description: >
4
+ Please use this form to send along new ideas for content or
5
+ changes that might be helpful!
6
+
7
+ body:
8
+ - type: checkboxes
9
+ attributes:
10
+ label: Is this a duplicate of an existing idea for this project?
11
+ description: >
12
+ Please make sure to search the existing issues first
13
+ to see whether the same issue was reported already.
14
+ If you find an existing issue, please don't hesitate to comment
15
+ on it or add a reaction to existing content!
16
+ options:
17
+ - label: >
18
+ I found no existing covering this topic.
19
+ required: true
20
+
21
+ - type: textarea
22
+ id: description
23
+ attributes:
24
+ label: What is your idea?
25
+ description: >
26
+ Please provide a specific description of what you'd like to see
27
+ including the context and what the result might look like.
28
+ placeholder: >
29
+ For example: "When x happens I see y.
30
+ The following might be a good way to address this ..."
31
+ validations:
32
+ required: true
33
+
34
+ - type: checkboxes
35
+ attributes:
36
+ label: Would you like to work on a solution for this?
37
+ description: >
38
+ This is a community-driven project and we
39
+ love new contributors (including through opening or adding to issues)!
40
+ This is an optional check to help us understand your interest to be
41
+ involved (especially if you already have a good understanding
42
+ of how to implement it).
43
+ We are happy to guide you in the contribution process and please
44
+ don't hesitate to reach out for help along the way.
45
+ options:
46
+ - label: Yes I am willing to submit a PR for this!
@@ -0,0 +1,37 @@
1
+ <!-- _modified from [EmbeddedArtistry](https://embeddedartistry.com/blog/2017/08/04/a-github-pull-request-template-for-your-projects/)_
2
+ _referenced with modifications from [pycytominer](https://github.com/cytomining/pycytominer/blob/master/.github/PULL_REQUEST_TEMPLATE.md)_ -->
3
+
4
+ # Description
5
+
6
+ <!--
7
+ Thank you so much for your contribution to this project!
8
+
9
+ Please _succinctly_ summarize your proposed change.
10
+ Namely, consider addressing the following questions:
11
+
12
+ - What motivated you to open this pull request?
13
+ - Were there any special adjustments you had to make to complete the work?
14
+ - Are there any issues which are related to this pull request (you may used a `#<digit>` to reference GitHub issues as links within this description)?
15
+
16
+ Also, if you haven't already, please use `pre-commit run --all-files` to help check your files using this project's pre-commit configuration.
17
+ Pre-commit checks will automatically run as part of opening this pull request and we seek to ensure all checks pass before merging changes.
18
+ -->
19
+
20
+ ## What kind of change(s) are included?
21
+
22
+ - [ ] Documentation (changes docs or other related content)
23
+ - [ ] Bug fix (fixes an issue).
24
+ - [ ] Enhancement (adds functionality).
25
+ - [ ] Breaking change (these changes would cause existing functionality to not work as expected).
26
+
27
+ # Checklist
28
+
29
+ Please ensure that all boxes are checked before indicating that this pull request is ready for review.
30
+
31
+ - [ ] I have read and followed the [CONTRIBUTING.md](CONTRIBUTING.md) guidelines.
32
+ - [ ] I have searched for existing content to ensure this is not a duplicate.
33
+ - [ ] I have performed a self-review of these additions (including spelling, grammar, and related).
34
+ - [ ] These changes pass all pre-commit checks.
35
+ - [ ] I have added comments to my code to help provide understanding
36
+ - [ ] I have added a test which covers the code changes found within this PR
37
+ - [ ] I have deleted all non-relevant text in this pull request template.
@@ -0,0 +1,25 @@
1
+ # Dependabot configuration
2
+ # https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuring-dependabot-version-updates#enabling-github-dependabot-version-updates
3
+ # https://til.simonwillison.net/github/dependabot-python-setup
4
+
5
+ version: 2
6
+ updates:
7
+ # Monitor uv dependencies
8
+ - package-ecosystem: uv
9
+ directory: "/"
10
+ schedule:
11
+ interval: monthly
12
+ groups:
13
+ python-packages:
14
+ patterns:
15
+ - "*"
16
+
17
+ # Monitor GitHub Actions and propose updates for security and maintenance
18
+ - package-ecosystem: github-actions
19
+ directory: "/"
20
+ schedule:
21
+ interval: monthly
22
+ groups:
23
+ github-actions:
24
+ patterns:
25
+ - "*"
@@ -0,0 +1,21 @@
1
+ ---
2
+ # template configuration for release-drafter
3
+ # see: https://github.com/release-drafter/release-drafter
4
+ name-template: 'v$RESOLVED_VERSION'
5
+ tag-template: 'v$RESOLVED_VERSION'
6
+ version-resolver:
7
+ major:
8
+ labels:
9
+ - 'release-major'
10
+ minor:
11
+ labels:
12
+ - 'release-minor'
13
+ patch:
14
+ labels:
15
+ - 'release-patch'
16
+ default: patch
17
+ change-template: '- $TITLE (@$AUTHOR via #$NUMBER)'
18
+ template: |
19
+ ## Changes
20
+
21
+ $CHANGES
@@ -0,0 +1,23 @@
1
+ ---
2
+ # workflow for drafting releases on GitHub
3
+ # see: https://github.com/release-drafter/release-drafter
4
+ name: release drafter
5
+
6
+ on:
7
+ push:
8
+ branches:
9
+ - main
10
+
11
+ jobs:
12
+ draft_release:
13
+ permissions:
14
+ # write permission is required to create a github release
15
+ contents: write
16
+ # write permission is required for autolabeler
17
+ # otherwise, read permission is required at least
18
+ pull-requests: write
19
+ runs-on: ubuntu-latest
20
+ steps:
21
+ - uses: release-drafter/release-drafter@v6
22
+ env:
23
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -0,0 +1,33 @@
1
+ ---
2
+ # used for publishing packages to pypi on release
3
+ name: publish pypi release
4
+
5
+ on:
6
+ release:
7
+ types:
8
+ - published
9
+
10
+ jobs:
11
+ publish_pypi:
12
+ runs-on: ubuntu-latest
13
+ environment: release
14
+ permissions:
15
+ # IMPORTANT: this permission is mandatory for trusted publishing
16
+ id-token: write
17
+ steps:
18
+ - name: Checkout
19
+ uses: actions/checkout@v5
20
+ with:
21
+ fetch-depth: 0
22
+ - name: Fetch tags
23
+ run: git fetch --all --tags
24
+ - name: Python setup
25
+ uses: actions/setup-python@v6
26
+ with:
27
+ python-version: "3.11"
28
+ - name: Install the latest version of uv
29
+ uses: astral-sh/setup-uv@v7
30
+ - name: uv build distribution content
31
+ run: uv build
32
+ - name: Publish package distributions to PyPI
33
+ uses: pypa/gh-action-pypi-publish@release/v1
@@ -0,0 +1,56 @@
1
+ ---
2
+ # used for running tests
3
+ name: tests
4
+
5
+ on:
6
+ push:
7
+ branches: [main]
8
+ pull_request:
9
+ branches: [main]
10
+
11
+ jobs:
12
+ pre_commit_checks:
13
+ runs-on: ubuntu-24.04
14
+ steps:
15
+ # checks out the repo
16
+ - uses: actions/checkout@v5
17
+ # run pre-commit
18
+ - name: Python setup
19
+ uses: actions/setup-python@v6
20
+ with:
21
+ python-version: "3.11"
22
+ - name: Install the latest version of uv
23
+ uses: astral-sh/setup-uv@v7
24
+ - name: Install Windows OpenGL
25
+ uses: pyvista/setup-headless-display-action@v4.2
26
+ with:
27
+ qt: true
28
+ wm: herbstluftwm
29
+ - uses: pre-commit/action@v3.0.1
30
+ # run pre-commit ci lite for automated fixes
31
+ - uses: pre-commit-ci/lite-action@v1.1.0
32
+ if: ${{ !cancelled() }}
33
+ run_tests:
34
+ strategy:
35
+ matrix:
36
+ python_version: ["3.11", "3.12", "3.13"]
37
+ os: [ubuntu-24.04, macos-14]
38
+ runs-on: ${{ matrix.os }}
39
+ env:
40
+ OS: ${{ matrix.os }}
41
+ steps:
42
+ - name: Checkout
43
+ uses: actions/checkout@v5
44
+ - name: Python setup
45
+ uses: actions/setup-python@v6
46
+ with:
47
+ python-version: ${{ matrix.python_version }}
48
+ - name: Install the latest version of uv
49
+ uses: astral-sh/setup-uv@v7
50
+ - name: Install Windows OpenGL
51
+ uses: pyvista/setup-headless-display-action@v4.2
52
+ with:
53
+ qt: true
54
+ wm: herbstluftwm
55
+ - name: Run pytest
56
+ run: uv run --python ${{ matrix.python_version }} --frozen pytest
@@ -0,0 +1,84 @@
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
+ env/
12
+ build/
13
+ develop-eggs/
14
+ dist/
15
+ downloads/
16
+ eggs/
17
+ .eggs/
18
+ lib/
19
+ lib64/
20
+ parts/
21
+ sdist/
22
+ var/
23
+ *.egg-info/
24
+ .installed.cfg
25
+ *.egg
26
+
27
+ # PyInstaller
28
+ # Usually these files are written by a python script from a template
29
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
30
+ *.manifest
31
+ *.spec
32
+
33
+ # Installer logs
34
+ pip-log.txt
35
+ pip-delete-this-directory.txt
36
+
37
+ # Unit test / coverage reports
38
+ htmlcov/
39
+ .tox/
40
+ .coverage
41
+ .coverage.*
42
+ .cache
43
+ nosetests.xml
44
+ coverage.xml
45
+ *,cover
46
+ .hypothesis/
47
+ .napari_cache
48
+
49
+ # Translations
50
+ *.mo
51
+ *.pot
52
+
53
+ # Django stuff:
54
+ *.log
55
+ local_settings.py
56
+
57
+ # Flask instance folder
58
+ instance/
59
+
60
+ # Sphinx documentation
61
+ docs/_build/
62
+
63
+ # MkDocs documentation
64
+ /site/
65
+
66
+ # PyBuilder
67
+ target/
68
+
69
+ # Pycharm and VSCode
70
+ .idea/
71
+ venv/
72
+ .vscode/
73
+
74
+ # IPython Notebook
75
+ .ipynb_checkpoints
76
+
77
+ # pyenv
78
+ .python-version
79
+
80
+ # OS
81
+ .DS_Store
82
+
83
+ # written by setuptools_scm
84
+ **/_version.py
@@ -0,0 +1,41 @@
1
+ # .napari-hub/config.yml
2
+
3
+ # How this plugin appears on napari hub
4
+ display_name: napari-ome-arrow
5
+ name: napari-ome-arrow
6
+
7
+ # Use DESCRIPTION.md (plugin-focused) instead of README.md for the hub page
8
+ readme: README.md
9
+
10
+ # Short one-line summary shown in lists/search results
11
+ summary: >
12
+ Reader for OME-Arrow-backed OME-TIFF, OME-Zarr,
13
+ OME-Parquet, and stack patterns, with explicit
14
+ image/labels selection and automatic 3D for z-stacks.
15
+
16
+ # Optional: keywords to help people find it
17
+ labels:
18
+ - reader
19
+ - ome-tiff
20
+ - ome-zarr
21
+ - ome-parquet
22
+ - bioimaging
23
+ - microscopy
24
+ - z-stack
25
+ - segmentation
26
+ - labels
27
+
28
+ # Optional tags (similar to labels; hub treats them slightly differently)
29
+ tags:
30
+ - data-io
31
+ - bioimage-analysis
32
+ - visualization
33
+
34
+ # License identifier (adjust to match pyproject.toml)
35
+ license: BSD-3-Clause
36
+
37
+ # Links (replace with your actual URLs)
38
+ code_repository: https://github.com/wayscience/napari-ome-arrow
39
+ documentation: https://github.com/wayscience/napari-ome-arrow#readme
40
+ support:
41
+ issues: https://github.com/wayscience/napari-ome-arrow/issues
@@ -0,0 +1,62 @@
1
+ # See https://pre-commit.com for more information
2
+ # See https://pre-commit.com/hooks.html for more hooks
3
+ repos:
4
+ - repo: https://github.com/pre-commit/pre-commit-hooks
5
+ rev: v6.0.0
6
+ hooks:
7
+ - id: trailing-whitespace
8
+ - id: end-of-file-fixer
9
+ - id: check-yaml
10
+ - id: detect-private-key
11
+ - repo: https://github.com/tox-dev/pyproject-fmt
12
+ rev: "v2.11.1"
13
+ hooks:
14
+ - id: pyproject-fmt
15
+ - repo: https://github.com/citation-file-format/cffconvert
16
+ rev: 5295f87c0e261da61a7b919fc754e3a77edd98a7
17
+ hooks:
18
+ - id: validate-cff
19
+ - repo: https://github.com/codespell-project/codespell
20
+ rev: v2.4.1
21
+ hooks:
22
+ - id: codespell
23
+ exclude: |
24
+ (?x)^(
25
+ .*\.lock |
26
+ .*\.csv |
27
+ .*\.cff |
28
+ .*\.ipynb
29
+ )$
30
+ - repo: https://github.com/executablebooks/mdformat
31
+ rev: 0.7.21
32
+ hooks:
33
+ - id: mdformat
34
+ additional_dependencies:
35
+ - mdformat-gfm
36
+ - repo: https://github.com/adrienverge/yamllint
37
+ rev: v1.37.1
38
+ hooks:
39
+ - id: yamllint
40
+ exclude: pre-commit-config.yaml
41
+ - repo: https://github.com/astral-sh/ruff-pre-commit
42
+ rev: "v0.14.5"
43
+ hooks:
44
+ - id: ruff-format
45
+ - id: ruff-check
46
+ - repo: https://github.com/rhysd/actionlint
47
+ rev: v1.7.8
48
+ hooks:
49
+ - id: actionlint
50
+ - repo: https://gitlab.com/vojko.pribudic.foss/pre-commit-update
51
+ rev: v0.6.0
52
+ hooks:
53
+ - id: pre-commit-update
54
+ args: ["--keep", "mdformat", "--keep", "pre-commit-update", "--keep", "cffconvert"]
55
+ - repo: https://github.com/jendrikseipp/vulture
56
+ rev: 'v2.14'
57
+ hooks:
58
+ - id: vulture
59
+ - repo: https://github.com/tlambert03/napari-plugin-checks
60
+ rev: v0.3.0
61
+ hooks:
62
+ - id: napari-plugin-checks
@@ -0,0 +1,62 @@
1
+ # This CITATION.cff file was generated with cffinit.
2
+ # Visit https://bit.ly/cffinit to generate yours today!
3
+ ---
4
+ cff-version: 1.2.0
5
+ title: ome_arrow
6
+ message: >-
7
+ If you use this software, please cite it using the
8
+ metadata from the CITATION.cff file.
9
+ type: software
10
+ authors:
11
+ - given-names: Dave
12
+ family-names: Bunten
13
+ orcid: "https://orcid.org/0000-0001-6041-3665"
14
+ - given-names: Jenna
15
+ family-names: Tomkinson
16
+ orcid: 'https://orcid.org/0000-0003-2676-5813'
17
+ - given-names: Michael
18
+ family-names: Lippincott
19
+ orcid: 'https://orcid.org/0000-0002-8637-1448'
20
+ - given-names: Cameron
21
+ family-names: Mattson
22
+ orcid: 'https://orcid.org/0009-0008-4969-779X'
23
+ - given-names: Gregory
24
+ family-names: Way
25
+ orcid: 'https://orcid.org/0000-0002-0503-9348'
26
+ repository-code: "https://github.com/wayscience/ome-arrow"
27
+ abstract: >-
28
+ Using OME specifications with Apache Arrow for fast, queryable, and language agnostic bioimage data.
29
+ keywords:
30
+ - python
31
+ license: BSD-3-Clause
32
+ references:
33
+ - authors:
34
+ - name: "ExampleHuman CellProfiler Data Team"
35
+ date-accessed: "2022-09-01"
36
+ title: ExampleHuman CellProfiler Data
37
+ type: data
38
+ repository-code: "https://github.com/CellProfiler/examples/tree/master/ExampleHuman"
39
+ url: "https://cellprofiler.org/examples"
40
+ scope: "ExampleHuman"
41
+ notes: >-
42
+ ExampleHuman CellProfiler data is used to help validate expected results.
43
+ identifiers:
44
+ - description: "README.md with Citation Information"
45
+ type: url
46
+ value: "https://github.com/CellProfiler/examples/blob/master/ExampleHuman/README.md"
47
+ - authors:
48
+ - name: "Open Microscopy Environment (OME) Team"
49
+ date-accessed: "2025-11-07"
50
+ title: OME-TIFF Sample Data
51
+ type: data
52
+ repository-code: "https://github.com/ome/ome-model"
53
+ url: "https://ome-model.readthedocs.io/en/stable/ome-tiff/data.html"
54
+ scope: "OME-TIFF Example Datasets"
55
+ notes: >-
56
+ The OME-TIFF sample datasets illustrate the structure and metadata conventions
57
+ used in the OME-TIFF format, including images for testing readers, writers,
58
+ and visualization tools.
59
+ identifiers:
60
+ - description: "OME Model Documentation — OME-TIFF Sample Data"
61
+ type: url
62
+ value: "https://ome-model.readthedocs.io/en/stable/ome-tiff/data.html"
@@ -0,0 +1,132 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our
6
+ community a harassment-free experience for everyone, regardless of age, body
7
+ size, visible or invisible disability, ethnicity, sex characteristics, gender
8
+ identity and expression, level of experience, education, socioeconomic status,
9
+ nationality, personal appearance, race, caste, color, religion, or sexual
10
+ identity and orientation.
11
+
12
+ We pledge to act and interact in ways that contribute to an open, welcoming,
13
+ diverse, inclusive, and healthy community.
14
+
15
+ ## Our Standards
16
+
17
+ Examples of behavior that contributes to a positive environment for our
18
+ community include:
19
+
20
+ - Demonstrating empathy and kindness toward other people
21
+ - Being respectful of differing opinions, viewpoints, and experiences
22
+ - Giving and gracefully accepting constructive feedback
23
+ - Accepting responsibility and apologizing to those affected by our mistakes,
24
+ and learning from the experience
25
+ - Focusing on what is best not just for us as individuals, but for the overall
26
+ community
27
+
28
+ Examples of unacceptable behavior include:
29
+
30
+ - The use of sexualized language or imagery, and sexual attention or advances of
31
+ any kind
32
+ - Trolling, insulting or derogatory comments, and personal or political attacks
33
+ - Public or private harassment
34
+ - Publishing others' private information, such as a physical or email address,
35
+ without their explicit permission
36
+ - Other conduct which could reasonably be considered inappropriate in a
37
+ professional setting
38
+
39
+ ## Enforcement Responsibilities
40
+
41
+ Community leaders are responsible for clarifying and enforcing our standards of
42
+ acceptable behavior and will take appropriate and fair corrective action in
43
+ response to any behavior that they deem inappropriate, threatening, offensive,
44
+ or harmful.
45
+
46
+ Community leaders have the right and responsibility to remove, edit, or reject
47
+ comments, commits, code, wiki edits, issues, and other contributions that are
48
+ not aligned to this Code of Conduct, and will communicate reasons for moderation
49
+ decisions when appropriate.
50
+
51
+ ## Scope
52
+
53
+ This Code of Conduct applies within all community spaces, and also applies when
54
+ an individual is officially representing the community in public spaces.
55
+ Examples of representing our community include using an official email address,
56
+ posting via an official social media account, or acting as an appointed
57
+ representative at an online or offline event.
58
+
59
+ ## Enforcement
60
+
61
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
62
+ reported to community leaders responsible for enforcement.
63
+ Please reach out to the maintainers of this repository by using their GitHub profile email address contact information to privately notify us of any incidents of this nature.
64
+ All complaints will be reviewed and investigated promptly and fairly.
65
+
66
+ All community leaders are obligated to respect the privacy and security of the
67
+ reporter of any incident.
68
+
69
+ ## Enforcement Guidelines
70
+
71
+ Community leaders will follow these Community Impact Guidelines in determining
72
+ the consequences for any action they deem in violation of this Code of Conduct:
73
+
74
+ ### 1. Correction
75
+
76
+ **Community Impact**: Use of inappropriate language or other behavior deemed
77
+ unprofessional or unwelcome in the community.
78
+
79
+ **Consequence**: A private, written warning from community leaders, providing
80
+ clarity around the nature of the violation and an explanation of why the
81
+ behavior was inappropriate. A public apology may be requested.
82
+
83
+ ### 2. Warning
84
+
85
+ **Community Impact**: A violation through a single incident or series of
86
+ actions.
87
+
88
+ **Consequence**: A warning with consequences for continued behavior. No
89
+ interaction with the people involved, including unsolicited interaction with
90
+ those enforcing the Code of Conduct, for a specified period of time. This
91
+ includes avoiding interactions in community spaces as well as external channels
92
+ like social media. Violating these terms may lead to a temporary or permanent
93
+ ban.
94
+
95
+ ### 3. Temporary Ban
96
+
97
+ **Community Impact**: A serious violation of community standards, including
98
+ sustained inappropriate behavior.
99
+
100
+ **Consequence**: A temporary ban from any sort of interaction or public
101
+ communication with the community for a specified period of time. No public or
102
+ private interaction with the people involved, including unsolicited interaction
103
+ with those enforcing the Code of Conduct, is allowed during this period.
104
+ Violating these terms may lead to a permanent ban.
105
+
106
+ ### 4. Permanent Ban
107
+
108
+ **Community Impact**: Demonstrating a pattern of violation of community
109
+ standards, including sustained inappropriate behavior, harassment of an
110
+ individual, or aggression toward or disparagement of classes of individuals.
111
+
112
+ **Consequence**: A permanent ban from any sort of public interaction within the
113
+ community.
114
+
115
+ ## Attribution
116
+
117
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
118
+ version 2.1, available at
119
+ [https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
120
+
121
+ Community Impact Guidelines were inspired by
122
+ [Mozilla's code of conduct enforcement ladder][mozilla coc].
123
+
124
+ For answers to common questions about this code of conduct, see the FAQ at
125
+ [https://www.contributor-covenant.org/faq][faq]. Translations are available at
126
+ [https://www.contributor-covenant.org/translations][translations].
127
+
128
+ [faq]: https://www.contributor-covenant.org/faq
129
+ [homepage]: https://www.contributor-covenant.org
130
+ [mozilla coc]: https://github.com/mozilla/diversity
131
+ [translations]: https://www.contributor-covenant.org/translations
132
+ [v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html