Metadata-Version: 2.1
Name: bbcodepyx
Version: 0.1.0
Summary: Python Library for rendering BBCode.
Home-page: https://github.com/vishnevskiy/bbcodepy
Author: Stanislav Vishnevskiy
Author-email: vishnevskiy@gmail.com
License: MIT
Platform: any
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
License-File: LICENSE

BBCODEPY
========

bbcodepy is a fast Python BBCode parser and renderer.


Usage
-----

All common BBCode tags are supported by default.

```
import bbcodepy
print bbcodepy.Parser().to_html('[b]Hello![/b]')
```
