Metadata-Version: 2.1
Name: pywe-wxa-cv
Version: 1.0.0
Summary: Wechat MiniProgram CV Module for Python.
Home-page: https://github.com/sdkwe/pywe-wxa-cv
Author: Hackathon
Author-email: kimi.huang@brightcells.com
License: UNKNOWN
Keywords: Wechat Weixin MiniProgram CV
Platform: UNKNOWN
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: pywe-base (>=1.0.6)
Requires-Dist: pywe-token (>=1.0.6)

===========
pywe-wxa-cv
===========

Wechat MiniProgram CV Module for Python.

Sandbox
=======

* https://developers.weixin.qq.com/sandbox

Installation
============

::

    pip install pywe-wxa-cv


Usage
=====

::

    from pywe_wxa_cv import CV, cv_aicrop, cv_qrcode, cv_superresolution


Method
======

::

    class CV(BaseToken):
        def __init__(self, appid=None, secret=None, token=None, storage=None):
            super(CV, self).__init__(appid=appid, secret=secret, token=token, storage=storage)

    def aicrop(self, img_url=None, img_file=None, img_file_path=None, ratios=None, appid=None, secret=None, token=None, storage=None):

    def qrcode(self, img_url=None, img_file=None, img_file_path=None, appid=None, secret=None, token=None, storage=None):

    def superresolution(self, img_url=None, img_file=None, img_file_path=None, appid=None, secret=None, token=None, storage=None):



