Metadata-Version: 2.1
Name: is-string
Version: 0.0.7
Summary: A small Python library to determine if something is a string
Home-page: https://github.com/przemo199/is-string
Author: Przemek Kaminski
Author-email: przemyslaw.m.kaminski@gmail.com
License: UNKNOWN
Keywords: python,str,string
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# is_string

![tests](https://github.com/przemo199/is_string/actions/workflows/tests.yml/badge.svg)
![PyPI - Downloads](https://img.shields.io/pypi/dm/is_string)

A small Python library to determine if something is a string

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

```bash
pip install is-string
```

Usage
------------

```python
from is_string import is_string

print(is_string('1')) #true
print(is_string(1))   #false
```

or

```python
import is_string

print(is_string.is_string('1')) #true
print(is_string.is_string(1))   #false
```

Credits
------------

This project was inspired by the work done by [Jacob Tomlinson](https://github.com/jacobtomlinson), especially a brilliant Py


