Metadata-Version: 2.1
Name: plapi-string
Version: 0.0.3
Summary: String operations python package
Home-page: https://github.com/plapi-org/plapi-string
Author: plapi
Author-email: plapi.org@gmail.com
Project-URL: Bug Tracker, https://github.com/plapi-org/plapi-string/issues
Keywords: strings nlp operations analysis package
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# plapi-string

## Description
`plapi-string` is a Python package that provides basic and advanced string operations.

## Installation
You can install the package using pip. Run the following command:

```
pip install plapi-string
```

## Usage
To use the package, you can import it in your Python code:

```python
import plapi

# Example usage of a similarity operation
similarity_score = plapi.string.cosine_similarity("example", "samples")
```

## Running Tests
To run the tests for this package, navigate to the `tests` directory and run:

```
pytest
```

## Contributing
Feel free to submit issues and pull requests to improve the package.
