https://github.com/mrtj/pyknowbase
Python library managing textual knowledge bases.
https://github.com/mrtj/pyknowbase
Last synced: about 2 months ago
JSON representation
Python library managing textual knowledge bases.
- Host: GitHub
- URL: https://github.com/mrtj/pyknowbase
- Owner: mrtj
- License: mit
- Created: 2023-09-05T12:19:29.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-08T13:42:31.000Z (over 2 years ago)
- Last Synced: 2025-01-16T17:30:29.581Z (over 1 year ago)
- Language: Python
- Size: 40 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
- Authors: AUTHORS.rst
Awesome Lists containing this project
README
========
Overview
========
.. start-badges
.. list-table::
:stub-columns: 1
* - docs
- |docs|
* - tests
- | |github-actions|
| |codecov|
* - package
- | |version| |wheel| |supported-versions| |supported-implementations|
| |commits-since|
.. |docs| image:: https://readthedocs.org/projects/pyknowbase/badge/?style=flat
:target: https://pyknowbase.readthedocs.io/
:alt: Documentation Status
.. |github-actions| image:: https://github.com/mrtj/pyknowbase/actions/workflows/github-actions.yml/badge.svg
:alt: GitHub Actions Build Status
:target: https://github.com/mrtj/pyknowbase/actions
.. |codecov| image:: https://codecov.io/gh/mrtj/pyknowbase/branch/main/graphs/badge.svg?branch=main
:alt: Coverage Status
:target: https://app.codecov.io/github/mrtj/pyknowbase
.. |version| image:: https://img.shields.io/pypi/v/pyknowbase.svg
:alt: PyPI Package latest release
:target: https://pypi.org/project/pyknowbase
.. |wheel| image:: https://img.shields.io/pypi/wheel/pyknowbase.svg
:alt: PyPI Wheel
:target: https://pypi.org/project/pyknowbase
.. |supported-versions| image:: https://img.shields.io/pypi/pyversions/pyknowbase.svg
:alt: Supported versions
:target: https://pypi.org/project/pyknowbase
.. |supported-implementations| image:: https://img.shields.io/pypi/implementation/pyknowbase.svg
:alt: Supported implementations
:target: https://pypi.org/project/pyknowbase
.. |commits-since| image:: https://img.shields.io/github/commits-since/mrtj/pyknowbase/v0.0.0.svg
:alt: Commits since latest release
:target: https://github.com/mrtj/pyknowbase/compare/v0.0.0...main
.. end-badges
Python library managing textual knowledge bases.
* Free software: MIT license
Installation
============
::
pip install pyknowbase
You can also install the in-development version with::
pip install https://github.com/mrtj/pyknowbase/archive/main.zip
Documentation
=============
https://pyknowbase.readthedocs.io/
Development
===========
To run all the tests run::
tox
Note, to combine the coverage data from all the tox environments run:
.. list-table::
:widths: 10 90
:stub-columns: 1
- - Windows
- ::
set PYTEST_ADDOPTS=--cov-append
tox
- - Other
- ::
PYTEST_ADDOPTS=--cov-append tox