Metadata-Version: 2.0
Name: rec
Version: 0.1.1
Summary: a collection of some useful regular expressions.
Home-page: https://github.com/iawia002/rec
Author: iawia002
Author-email: z2d@jifangcheng.com
License: MIT
Description-Content-Type: UNKNOWN
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy

rec
===

.. image:: https://travis-ci.org/iawia002/rec.svg?branch=master
    :alt: Build Status
    :target: https://travis-ci.org/iawia002/rec


a collection of some useful regular expressions.

Hello, world
------------

Installation

.. code-block:: bash

    pip install rec

Example

.. code-block:: python

    In [1]: import rec

    In [2]: rec.domain('http://bangumi.bilibili.com/anime/1089')
    Out[2]: [u'bilibili.com']

    In [3]: rec.domain('http://bangumi.bilibili.com/anime/1089', root=False)
    Out[3]: ['bilibili']


Documentation
-------------

See `doc.md <https://github.com/iawia002/rec/blob/master/doc.md>`_


🌙


