pybear


Namepybear JSON
Version 0.2.1 PyPI version JSON
download
home_pageNone
SummaryPython modules for miscellaneous data analytics applications
upload_time2025-08-16 23:11:22
maintainerBill Sousa
docs_urlNone
authorBill Sousa
requires_python>=3.10
licenseBSD-3-Clause
keywords python data analytics scikit-api text
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            pybear
======

|Tests|
|Coverage|
|Test Status 313|
|Test Status 312|
|Test Status 311|
|Test Status 310|

.. |Tests| image:: https://raw.githubusercontent.com/PylarBear/pybear/main/.github/badges/tests-badge.svg
   :target: https://github.com/PylarBear/pybear/actions

.. |Coverage| image:: https://raw.githubusercontent.com/PylarBear/pybear/main/.github/badges/coverage-badge.svg
   :target: https://github.com/PylarBear/pybear/actions

.. |Test Status 313| image:: https://github.com/PylarBear/pybear/actions/workflows/matrix-tests-py313.yml/badge.svg
   :target: https://github.com/PylarBear/pybear/actions/workflows/matrix-tests-py313.yml

.. |Test Status 312| image:: https://github.com/PylarBear/pybear/actions/workflows/matrix-tests-py312.yml/badge.svg
   :target: https://github.com/PylarBear/pybear/actions/workflows/matrix-tests-py312.yml

.. |Test Status 311| image:: https://github.com/PylarBear/pybear/actions/workflows/matrix-tests-py311.yml/badge.svg
   :target: https://github.com/PylarBear/pybear/actions/workflows/matrix-tests-py311.yml

.. |Test Status 310| image:: https://github.com/PylarBear/pybear/actions/workflows/matrix-tests-py310.yml/badge.svg
   :target: https://github.com/PylarBear/pybear/actions/workflows/matrix-tests-py310.yml

|Doc Status|

.. |Doc Status| image:: https://readthedocs.org/projects/pybear/badge/?version=latest
   :target: https://pybear.readthedocs.io/en/latest/?badge=latest
   :alt: Documentation Status

|TestPyPI Build Status|

.. |TestPyPI Build Status| image:: https://github.com/PylarBear/pybear/actions/workflows/testpypi-publish.yml/badge.svg
   :target: https://github.com/PylarBear/pybear/actions/workflows/testpypi-publish.yml

|PyPI Build Status|
|Version|
|PyPI Downloads|

.. |PyPI Build Status| image:: https://github.com/PylarBear/pybear/actions/workflows/pypi-publish.yml/badge.svg
   :target: https://github.com/PylarBear/pybear/actions/workflows/pypi-publish.yml

.. |Version| image:: https://img.shields.io/pypi/v/pybear
   :target: https://pypi.org/project/pybear
   :alt: PyPI Version

.. |PyPI Downloads| image:: https://static.pepy.tech/badge/pybear
   :target: https://pepy.tech/project/pybear
   :alt: PyPI Downloads

|DOI|

.. |DOI| image:: https://zenodo.org/badge/780637275.svg
   :target: https://doi.org/10.5281/zenodo.16547172
   :alt: DOI

.. _documentation: https://pybear.readthedocs.io/

.. |PythonVersion| replace:: >=3.10
.. |JoblibVersion| replace:: >=1.3.0
.. |NumpyVersion| replace:: >=2.1.0
.. |PandasVersion| replace:: >=2.2.3
.. |PolarsVersion| replace:: >=1.19.0
.. |PsutilVersion| replace:: >=5.7.0
.. |PytestVersion| replace:: >=7.0.0
.. |ScipyVersion| replace:: >=1.15.0
.. |ScikitLearnVersion| replace:: >=1.5.2
.. |TypingExtensionsVersion| replace:: >=4.12.0



Cool, but not frozen, packages to augment your Python data analytics experience.

pybear is a scikit-learn-style Python computing library that augments data
analytics functionality found in popular packages like scikit-learn and xgboost.

See documentation_ for more information.

Website: https://pybear.readthedocs.io/en/stable/index.html

License
-------

BSD 3-Clause License. See `License File <https://github.com/PylarBear/pybear/blob/main/LICENSE>`__.

=======

Installation
------------

Dependencies
~~~~~~~~~~~~

pybear requires:

- Python (|PythonVersion|)
- joblib (|JoblibVersion|)
- numpy (|NumPyVersion|)
- pandas (|PandasVersion|)
- polars (|PolarsVersion|)
- psutil (|PsutilVersion|)
- scikit-learn (|ScikitLearnVersion|)
- scipy (|ScipyVersion|)
- typing_extensions (|TypingExtensionsVersion|)

User installation
~~~~~~~~~~~~~~~~~

Install pybear from the online PyPI package repository using ``pip``::

   (your-env) $ pip install pybear

Conda distributions are expected to be made available sometime after release to
PyPI.

=======

Usage
-----
The folder structure of pybear is nearly identical to scikit-learn. This is so
those that are familiar with the scikit layout and have experience with writing
the associated import statements have an easy transition to pybear. The pybear
subfolders are *base*, *feature_extraction*, *model_selection*, *new_numpy*,
*preprocessing*, and *utilities*. For the full layout, see the API section of
the pybear website on Read The Docs.

You can import pybear's packages in the same way you would with scikit. Here
are a few examples of how you could import and use pybear modules:

.. code-block:: console

    from pybear.preprocessing import InterceptManager as IM

    trfm = IM()
    trfm.fit(X, y)

    from pybear import preprocessing as pp

    trfm = pp.ColumnDeduplicator()
    trfm.fit(X, y)


=======

Major Modules
-------------

AutoGridSearchCV
~~~~~~~~~~~~~~~~
Perform multiple uninterrupted passes of grid search with sci-kit learn 
GridSearchCV utilizing progressively narrower search grids.

- Access via pybear.model_selection.AutoGridSearchCV.

autogridsearch_wrapper
~~~~~~~~~~~~~~~~~~~~~~
Create your own auto-gridsearch class. A function that wraps any scikit-learn,
pybear, or dask_ml GridSearchCV module to create an identical GridSearch class
that performs multiple passes of grid search using progressively narrower
search grids.

- Access via pybear.model_selection.autogridsearch_wrapper.

GSTCV (GridSearchThresholdCV)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Perform conventional grid search on a classifier with concurrent threshold 
search. Finds the global optima for the passed parameters and thresholds. Fully
compliant with the scikit-learn GridSearchCV API.

- Access via pybear.model_selection.GSTCV.

AutoGSTCV
~~~~~~~~~
Perform multiple uninterrupted passes of grid search with pybear GSTCV 
utilizing progressively narrower search grids.

- Access via pybear.model_selection.AutoGSTCV.

MinCountTransformer
~~~~~~~~~~~~~~~~~~~
Perform minimum frequency thresholding on numerical or categorical data 
simultaneously across an entire array of data. Violates the scikit-learn API 
in that datasets are modified along the example axis (examples may be deleted.)
Otherwise is fully compliant with the sci-kit learn transformer API, with fit, 
transform, and partial_fit methods.

- Access via pybear.preprocessing.MinCountTransformer.

ColumnDeduplicator
~~~~~~~~~~~~~~~~~~
Identify and selectively remove duplicate columns in numerical or categorical 
data. Fully compliant with the scikit-learn transformer API, with fit,
transform, and partial_fit methods. Perfect for removing duplicate columns from
one-hot encoded data in a scikit-learn pipeline. Also fits and transforms data 
batch-wise, such as with dask_ml Incremental and ParallelPostFit wrappers.

- Access via pybear.preprocessing.ColumnDeduplicator.

InterceptManager
~~~~~~~~~~~~~~~~
A scikit-style transformer that identifies and manages constant columns in a 
dataset. IM can remove all, selectively keep one, or append a column of 
constants. Handles numerical & non-numerical data, and nan-like values. Does 
batch-wise fitting via a partial_fit method, and can be wrapped with dask_ml 
Incremental and ParallelPostFit wrappers.

- Access via pybear.preprocessing.InterceptManager.

SlimPolyFeatures
~~~~~~~~~~~~~~~~
Perform a polynomial feature expansion on a dataset omitting constant and 
duplicate columns. Follows the standard scikit-learn transformer API. Handles 
scipy sparse matrices/arrays. Suitable for sklearn pipelines. Has a partial_fit 
method for batch-wise training and can be wrapped with dask_ml Incremental and
ParallelPostFit wrappers.

- Access via pybear.preprocessing.SlimPolyFeatures.


The pybear Text Wrangling Suite
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
pybear has a wide selection of text wrangling tools for those who don't have a
PhD in NLP. Most modules have the dual capability of working with regular
expressions or literal strings (for those who don't know regular expressions!)
Most of the modules also accept data in 1D list-like format or (ragged!) 2D
array-like format. All of these are built in scikit transformer API style and
can be stacked in a scikit pipeline.

These modules can be found in pybear.feature_extraction.text.
The modules include:

- Lexicon - A class exposing 68,000+ English words and a stop words attribute
- NGramMerger - Join select adjacent tokens together to handle as a single token
- StopRemover - Remove pybear stop words from a body of text
- TextJoiner - Join tokenized text into a contiguous string with separators
- TextJustifier - Justify to a fixed margin; wrap on literals or regex patterns
- TextLookup - Compare words in a body of text against the pybear Lexicon
- TextLookupRealTime - Same as TextLookup but with in-situ save capability
- TextNormalizer - Normalize text to the same case
- TextPadder - Pad ragged text into shaped containers using fill
- TextRemover - Remove units of contiguous text
- TextReplacer - Remove substrings from contiguous text
- TextSplitter - Split contiguous text into tokens using literal strings or regex
- TextStatistics - Compile statistics about a body of text
- TextStripper - Remove leading and trailing spaces from text


=======

Related Resources
-----------------
pybear has a sister package called pybear_dask. A few of the pybear modules
have a corresponding twin in pybear-dask. You can pip install pybear-dask
from PyPI in the same way as pybear. There is no Read The Docs website for
pybear-dask, but it does have a GitHub repo.

https://github.com/PylarBear/pybear-dask/

Use the pybear documentation for guidance on how to use the pybear-dask modules.


=======

Changelog
---------

See the `changelog <https://github.com/PylarBear/pybear/blob/main/CHANGELOG.md>`__
for a history of notable changes to pybear.

=======

Development
-----------

Important links
~~~~~~~~~~~~~~~

- Official source code repo: https://github.com/PylarBear/pybear
- Download releases: https://test.pypi.org/project/pybear/ (pypi coming soon!)
- Issue tracker: https://github.com/PylarBear/pybear/issues

Source code
~~~~~~~~~~~

You can clone the latest source code with the command::

    git clone https://github.com/PylarBear/pybear.git

Contributing
~~~~~~~~~~~~

pybear is not ready for contributions at this time!

Testing
~~~~~~~

pybear 0.2 is tested via GitHub Actions to run on Linux, Windows, and MacOS,
with Python versions 3.10, 3.11, 3.12, and 3.13. pybear is not tested on earlier
versions, but some features may work.

If you want to test pybear yourself, you will need:

- pytest (|PytestVersion|)

The tests are not available in the PyPI pip installation. You can get
the tests by downloading the tarball from the pybear project page on
`pypi.org <https://pypi.org/project/pybear/>`_ or cloning the pybear repo from
`GitHub <https://github.com/PylarBear/pybear>`_. Once you have the source files
in a local project folder, create a poetry environment for the project and
install the test dependencies. After installation, open the poetry environment
shell and you can launch the test suite from the root of your pybear project
folder with::

    (your-pybear-env) you@your_computer:/path/to/pybear/project$ pytest tests/

Project History
---------------

The project originated in the early 2020's as a collection of miscellaneous 
private modules to enhance the python data analytics ecosystem. In 2025, the 
modules were formalized and bundled together for their first release as pybear.

Help and Support
----------------

Documentation
~~~~~~~~~~~~~

- HTML documentation: https://pybear.readthedocs.io/en/stable/api.html

Communication
~~~~~~~~~~~~~

- GitHub Discussions: https://github.com/PylarBear/pybear/discussions







            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pybear",
    "maintainer": "Bill Sousa",
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "python data analytics scikit-API text",
    "author": "Bill Sousa",
    "author_email": "WKSJR99@msn.com",
    "download_url": "https://files.pythonhosted.org/packages/1d/5d/ef7ebfc056a8cbbcf8165df23a2c79cb1edf951a4a9a1ac2fbda299de166/pybear-0.2.1.tar.gz",
    "platform": null,
    "description": "pybear\n======\n\n|Tests|\n|Coverage|\n|Test Status 313|\n|Test Status 312|\n|Test Status 311|\n|Test Status 310|\n\n.. |Tests| image:: https://raw.githubusercontent.com/PylarBear/pybear/main/.github/badges/tests-badge.svg\n   :target: https://github.com/PylarBear/pybear/actions\n\n.. |Coverage| image:: https://raw.githubusercontent.com/PylarBear/pybear/main/.github/badges/coverage-badge.svg\n   :target: https://github.com/PylarBear/pybear/actions\n\n.. |Test Status 313| image:: https://github.com/PylarBear/pybear/actions/workflows/matrix-tests-py313.yml/badge.svg\n   :target: https://github.com/PylarBear/pybear/actions/workflows/matrix-tests-py313.yml\n\n.. |Test Status 312| image:: https://github.com/PylarBear/pybear/actions/workflows/matrix-tests-py312.yml/badge.svg\n   :target: https://github.com/PylarBear/pybear/actions/workflows/matrix-tests-py312.yml\n\n.. |Test Status 311| image:: https://github.com/PylarBear/pybear/actions/workflows/matrix-tests-py311.yml/badge.svg\n   :target: https://github.com/PylarBear/pybear/actions/workflows/matrix-tests-py311.yml\n\n.. |Test Status 310| image:: https://github.com/PylarBear/pybear/actions/workflows/matrix-tests-py310.yml/badge.svg\n   :target: https://github.com/PylarBear/pybear/actions/workflows/matrix-tests-py310.yml\n\n|Doc Status|\n\n.. |Doc Status| image:: https://readthedocs.org/projects/pybear/badge/?version=latest\n   :target: https://pybear.readthedocs.io/en/latest/?badge=latest\n   :alt: Documentation Status\n\n|TestPyPI Build Status|\n\n.. |TestPyPI Build Status| image:: https://github.com/PylarBear/pybear/actions/workflows/testpypi-publish.yml/badge.svg\n   :target: https://github.com/PylarBear/pybear/actions/workflows/testpypi-publish.yml\n\n|PyPI Build Status|\n|Version|\n|PyPI Downloads|\n\n.. |PyPI Build Status| image:: https://github.com/PylarBear/pybear/actions/workflows/pypi-publish.yml/badge.svg\n   :target: https://github.com/PylarBear/pybear/actions/workflows/pypi-publish.yml\n\n.. |Version| image:: https://img.shields.io/pypi/v/pybear\n   :target: https://pypi.org/project/pybear\n   :alt: PyPI Version\n\n.. |PyPI Downloads| image:: https://static.pepy.tech/badge/pybear\n   :target: https://pepy.tech/project/pybear\n   :alt: PyPI Downloads\n\n|DOI|\n\n.. |DOI| image:: https://zenodo.org/badge/780637275.svg\n   :target: https://doi.org/10.5281/zenodo.16547172\n   :alt: DOI\n\n.. _documentation: https://pybear.readthedocs.io/\n\n.. |PythonVersion| replace:: >=3.10\n.. |JoblibVersion| replace:: >=1.3.0\n.. |NumpyVersion| replace:: >=2.1.0\n.. |PandasVersion| replace:: >=2.2.3\n.. |PolarsVersion| replace:: >=1.19.0\n.. |PsutilVersion| replace:: >=5.7.0\n.. |PytestVersion| replace:: >=7.0.0\n.. |ScipyVersion| replace:: >=1.15.0\n.. |ScikitLearnVersion| replace:: >=1.5.2\n.. |TypingExtensionsVersion| replace:: >=4.12.0\n\n\n\nCool, but not frozen, packages to augment your Python data analytics experience.\n\npybear is a scikit-learn-style Python computing library that augments data\nanalytics functionality found in popular packages like scikit-learn and xgboost.\n\nSee documentation_ for more information.\n\nWebsite: https://pybear.readthedocs.io/en/stable/index.html\n\nLicense\n-------\n\nBSD 3-Clause License. See `License File <https://github.com/PylarBear/pybear/blob/main/LICENSE>`__.\n\n=======\n\nInstallation\n------------\n\nDependencies\n~~~~~~~~~~~~\n\npybear requires:\n\n- Python (|PythonVersion|)\n- joblib (|JoblibVersion|)\n- numpy (|NumPyVersion|)\n- pandas (|PandasVersion|)\n- polars (|PolarsVersion|)\n- psutil (|PsutilVersion|)\n- scikit-learn (|ScikitLearnVersion|)\n- scipy (|ScipyVersion|)\n- typing_extensions (|TypingExtensionsVersion|)\n\nUser installation\n~~~~~~~~~~~~~~~~~\n\nInstall pybear from the online PyPI package repository using ``pip``::\n\n   (your-env) $ pip install pybear\n\nConda distributions are expected to be made available sometime after release to\nPyPI.\n\n=======\n\nUsage\n-----\nThe folder structure of pybear is nearly identical to scikit-learn. This is so\nthose that are familiar with the scikit layout and have experience with writing\nthe associated import statements have an easy transition to pybear. The pybear\nsubfolders are *base*, *feature_extraction*, *model_selection*, *new_numpy*,\n*preprocessing*, and *utilities*. For the full layout, see the API section of\nthe pybear website on Read The Docs.\n\nYou can import pybear's packages in the same way you would with scikit. Here\nare a few examples of how you could import and use pybear modules:\n\n.. code-block:: console\n\n    from pybear.preprocessing import InterceptManager as IM\n\n    trfm = IM()\n    trfm.fit(X, y)\n\n    from pybear import preprocessing as pp\n\n    trfm = pp.ColumnDeduplicator()\n    trfm.fit(X, y)\n\n\n=======\n\nMajor Modules\n-------------\n\nAutoGridSearchCV\n~~~~~~~~~~~~~~~~\nPerform multiple uninterrupted passes of grid search with sci-kit learn \nGridSearchCV utilizing progressively narrower search grids.\n\n- Access via pybear.model_selection.AutoGridSearchCV.\n\nautogridsearch_wrapper\n~~~~~~~~~~~~~~~~~~~~~~\nCreate your own auto-gridsearch class. A function that wraps any scikit-learn,\npybear, or dask_ml GridSearchCV module to create an identical GridSearch class\nthat performs multiple passes of grid search using progressively narrower\nsearch grids.\n\n- Access via pybear.model_selection.autogridsearch_wrapper.\n\nGSTCV (GridSearchThresholdCV)\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\nPerform conventional grid search on a classifier with concurrent threshold \nsearch. Finds the global optima for the passed parameters and thresholds. Fully\ncompliant with the scikit-learn GridSearchCV API.\n\n- Access via pybear.model_selection.GSTCV.\n\nAutoGSTCV\n~~~~~~~~~\nPerform multiple uninterrupted passes of grid search with pybear GSTCV \nutilizing progressively narrower search grids.\n\n- Access via pybear.model_selection.AutoGSTCV.\n\nMinCountTransformer\n~~~~~~~~~~~~~~~~~~~\nPerform minimum frequency thresholding on numerical or categorical data \nsimultaneously across an entire array of data. Violates the scikit-learn API \nin that datasets are modified along the example axis (examples may be deleted.)\nOtherwise is fully compliant with the sci-kit learn transformer API, with fit, \ntransform, and partial_fit methods.\n\n- Access via pybear.preprocessing.MinCountTransformer.\n\nColumnDeduplicator\n~~~~~~~~~~~~~~~~~~\nIdentify and selectively remove duplicate columns in numerical or categorical \ndata. Fully compliant with the scikit-learn transformer API, with fit,\ntransform, and partial_fit methods. Perfect for removing duplicate columns from\none-hot encoded data in a scikit-learn pipeline. Also fits and transforms data \nbatch-wise, such as with dask_ml Incremental and ParallelPostFit wrappers.\n\n- Access via pybear.preprocessing.ColumnDeduplicator.\n\nInterceptManager\n~~~~~~~~~~~~~~~~\nA scikit-style transformer that identifies and manages constant columns in a \ndataset. IM can remove all, selectively keep one, or append a column of \nconstants. Handles numerical & non-numerical data, and nan-like values. Does \nbatch-wise fitting via a partial_fit method, and can be wrapped with dask_ml \nIncremental and ParallelPostFit wrappers.\n\n- Access via pybear.preprocessing.InterceptManager.\n\nSlimPolyFeatures\n~~~~~~~~~~~~~~~~\nPerform a polynomial feature expansion on a dataset omitting constant and \nduplicate columns. Follows the standard scikit-learn transformer API. Handles \nscipy sparse matrices/arrays. Suitable for sklearn pipelines. Has a partial_fit \nmethod for batch-wise training and can be wrapped with dask_ml Incremental and\nParallelPostFit wrappers.\n\n- Access via pybear.preprocessing.SlimPolyFeatures.\n\n\nThe pybear Text Wrangling Suite\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\npybear has a wide selection of text wrangling tools for those who don't have a\nPhD in NLP. Most modules have the dual capability of working with regular\nexpressions or literal strings (for those who don't know regular expressions!)\nMost of the modules also accept data in 1D list-like format or (ragged!) 2D\narray-like format. All of these are built in scikit transformer API style and\ncan be stacked in a scikit pipeline.\n\nThese modules can be found in pybear.feature_extraction.text.\nThe modules include:\n\n- Lexicon - A class exposing 68,000+ English words and a stop words attribute\n- NGramMerger - Join select adjacent tokens together to handle as a single token\n- StopRemover - Remove pybear stop words from a body of text\n- TextJoiner - Join tokenized text into a contiguous string with separators\n- TextJustifier - Justify to a fixed margin; wrap on literals or regex patterns\n- TextLookup - Compare words in a body of text against the pybear Lexicon\n- TextLookupRealTime - Same as TextLookup but with in-situ save capability\n- TextNormalizer - Normalize text to the same case\n- TextPadder - Pad ragged text into shaped containers using fill\n- TextRemover - Remove units of contiguous text\n- TextReplacer - Remove substrings from contiguous text\n- TextSplitter - Split contiguous text into tokens using literal strings or regex\n- TextStatistics - Compile statistics about a body of text\n- TextStripper - Remove leading and trailing spaces from text\n\n\n=======\n\nRelated Resources\n-----------------\npybear has a sister package called pybear_dask. A few of the pybear modules\nhave a corresponding twin in pybear-dask. You can pip install pybear-dask\nfrom PyPI in the same way as pybear. There is no Read The Docs website for\npybear-dask, but it does have a GitHub repo.\n\nhttps://github.com/PylarBear/pybear-dask/\n\nUse the pybear documentation for guidance on how to use the pybear-dask modules.\n\n\n=======\n\nChangelog\n---------\n\nSee the `changelog <https://github.com/PylarBear/pybear/blob/main/CHANGELOG.md>`__\nfor a history of notable changes to pybear.\n\n=======\n\nDevelopment\n-----------\n\nImportant links\n~~~~~~~~~~~~~~~\n\n- Official source code repo: https://github.com/PylarBear/pybear\n- Download releases: https://test.pypi.org/project/pybear/ (pypi coming soon!)\n- Issue tracker: https://github.com/PylarBear/pybear/issues\n\nSource code\n~~~~~~~~~~~\n\nYou can clone the latest source code with the command::\n\n    git clone https://github.com/PylarBear/pybear.git\n\nContributing\n~~~~~~~~~~~~\n\npybear is not ready for contributions at this time!\n\nTesting\n~~~~~~~\n\npybear 0.2 is tested via GitHub Actions to run on Linux, Windows, and MacOS,\nwith Python versions 3.10, 3.11, 3.12, and 3.13. pybear is not tested on earlier\nversions, but some features may work.\n\nIf you want to test pybear yourself, you will need:\n\n- pytest (|PytestVersion|)\n\nThe tests are not available in the PyPI pip installation. You can get\nthe tests by downloading the tarball from the pybear project page on\n`pypi.org <https://pypi.org/project/pybear/>`_ or cloning the pybear repo from\n`GitHub <https://github.com/PylarBear/pybear>`_. Once you have the source files\nin a local project folder, create a poetry environment for the project and\ninstall the test dependencies. After installation, open the poetry environment\nshell and you can launch the test suite from the root of your pybear project\nfolder with::\n\n    (your-pybear-env) you@your_computer:/path/to/pybear/project$ pytest tests/\n\nProject History\n---------------\n\nThe project originated in the early 2020's as a collection of miscellaneous \nprivate modules to enhance the python data analytics ecosystem. In 2025, the \nmodules were formalized and bundled together for their first release as pybear.\n\nHelp and Support\n----------------\n\nDocumentation\n~~~~~~~~~~~~~\n\n- HTML documentation: https://pybear.readthedocs.io/en/stable/api.html\n\nCommunication\n~~~~~~~~~~~~~\n\n- GitHub Discussions: https://github.com/PylarBear/pybear/discussions\n\n\n\n\n\n\n",
    "bugtrack_url": null,
    "license": "BSD-3-Clause",
    "summary": "Python modules for miscellaneous data analytics applications",
    "version": "0.2.1",
    "project_urls": {
        "Documentation": "https://pybear.readthedocs.io/en/stable/",
        "Homepage": "https://github.com/PylarBear/pybear",
        "Repository": "https://github.com/PylarBear/pybear"
    },
    "split_keywords": [
        "python",
        "data",
        "analytics",
        "scikit-api",
        "text"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8746d3a464ef0ad3cd60210c23cc97867b271ad9ec57b6530074b0ae7e10aaf7",
                "md5": "682a7d839819b98bbf90099cf2165193",
                "sha256": "8ff0b4a3d033d1afb792659ba271d495632ee5515538202f9609f5b79584f2ed"
            },
            "downloads": -1,
            "filename": "pybear-0.2.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "682a7d839819b98bbf90099cf2165193",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 914985,
            "upload_time": "2025-08-16T23:11:20",
            "upload_time_iso_8601": "2025-08-16T23:11:20.299856Z",
            "url": "https://files.pythonhosted.org/packages/87/46/d3a464ef0ad3cd60210c23cc97867b271ad9ec57b6530074b0ae7e10aaf7/pybear-0.2.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1d5def7ebfc056a8cbbcf8165df23a2c79cb1edf951a4a9a1ac2fbda299de166",
                "md5": "d16e63f3681fdfa008647c447388bfb9",
                "sha256": "ef98f2546ee9bee174288746552710008ecfcfb74fbbb1ee7b0f1ed84c4cd8e1"
            },
            "downloads": -1,
            "filename": "pybear-0.2.1.tar.gz",
            "has_sig": false,
            "md5_digest": "d16e63f3681fdfa008647c447388bfb9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 1048940,
            "upload_time": "2025-08-16T23:11:22",
            "upload_time_iso_8601": "2025-08-16T23:11:22.429478Z",
            "url": "https://files.pythonhosted.org/packages/1d/5d/ef7ebfc056a8cbbcf8165df23a2c79cb1edf951a4a9a1ac2fbda299de166/pybear-0.2.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-16 23:11:22",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "PylarBear",
    "github_project": "pybear",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "pybear"
}
        
Elapsed time: 0.71950s