Metadata-Version: 2.4
Name: xmelutils
Version: 0.0.2.1
Summary: Personal utility functions by Igor Xmelnikov. Developed for personal use but shared for anyone who might find them helpful. 
Home-page: https://github.com/GigaGitCoder/XmelUtils
Author: Igor Xmelnikov
Author-email: egorkholkin2018@gmail.com
License: MIT
Keywords: igor xmel utilities string tools
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Utilities
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# Igor's Utilities
I made these tools for myself, but you're welcome to use them if they're helpful.


## Download
```bash
pip install xmelutils
```

> if new version released add: --update

## Quickstart

```python
from xmelutils import many_count

text = "zxc123QWERTYwasd"

print(many_count(text, "z1w")) # result: 4 (case_insensitive=False by default)


print(many_count(text, "Wx1", case_insensitive=True)) # result: 3 (case_insensitive=True -> "w" != "W")
```

## Documentation

Full documentation available on [Read the Docs](https://xmelutils.readthedocs.io/)

## License

Project used [MIT License](LICENSE)

## Contributing

To contribute into the project follow instructions in [Contributing file](CONTRIBUTING.md)
