wrapclibΒΆ

Build status Build Status Windows https://circleci.com/gh/sdpython/wrapclib/tree/master.svg?style=svg https://badge.fury.io/py/wrapclib.svg MIT License https://codecov.io/github/sdpython/wrapclib/coverage.svg?branch=master GitHub Issues Notebook Coverage size

Links: github, documentation, wrapclib, blog

wrapclib is a wrapper for some C libraries difficult to build otherwise. The first one to be wrapped is re2 with some code taken from pyre2.

<<<

from wrapclib import re2
s = "<h1>mot</h1>"
print(re2.compile("(<.*>)").match(s).groups())
print(re2.findall("(<.*>)", s))

>>>

    ('<h1>mot</h1>',)
    [('<h1>mot</h1>',)]

Modules

Functions

Classes

Methods

Static Methods

Properties

Module Index

Examples

Search Page

License

Changes

wrapclib

Index

FAQ

Notebooks Gallery

History

Statistics on code

Unit Test Coverage