An open API service indexing awesome lists of open source software.

https://github.com/kcreate/python-tag-parser

Small tag parsing Utility written in Python
https://github.com/kcreate/python-tag-parser

Last synced: 7 months ago
JSON representation

Small tag parsing Utility written in Python

Awesome Lists containing this project

README

          

# Python-Tag-Parser
Small tag parsing Utility written in Python

__Usage:__
```
python tagparser.py "TAGHERE" "STRING HERE"
```
Make sure you encapsulate your arguments inside double quoted marks.

__Example:__
```bash
python tagparser.py "*" "Python is *awesome* and *fast*"
# ['awesome', 'fast']
```

You can also import it and use the __parsetag(tag, string)__ function
__Example:__
```python
print(parsetag('*', 'Python is *awesome* and *fast*'))
# ['awesome', 'fast']
```