معرفی شرکت ها


dash-qr-manager-0.0.4


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Dash component to create and read QR codes.
ویژگی مقدار
سیستم عامل -
نام فایل dash-qr-manager-0.0.4
نام dash-qr-manager
نسخه کتابخانه 0.0.4
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Toumaske <krest.toumas@outlook.de>
ایمیل نویسنده -
آدرس صفحه اصلی https://github.com/Toumaske/dash-qr-manager
آدرس اینترنتی https://pypi.org/project/dash-qr-manager/
مجوز MIT
<p> <img src="https://badgen.net/pypi/license/dash-qr-manager"> <a href="https://pypi.org/project/dash-qr-manager/"> <img src="https://badgen.net/pypi/v/dash-qr-manager"> </a> <img src="https://static.pepy.tech/personalized-badge/dash-qr-manager?period=total&units=international_system&left_color=black&right_color=yellowgreen&left_text=Downloads"> </p> Dash QR manger is a wrapper around [react-google-qrcode](https://www.npmjs.com/package/react-google-qrcode) and [react-qr-reader](https://www.npmjs.com/package/react-qr-reader). Installation ====== ```bash pip install dash-qr-manager ``` Usage ====== Creating QR code ----- ```python import dash_qr_manager as dqm import dash import dash_html_components as html app = dash.Dash(__name__) app.layout = html.Div( children=[ dqm.DashQrGenerator( id='qr-code', data='http://example.com/', framed=True, ) ] ) if __name__ == '__main__': app.run_server(debug=True) ``` Reading QR code ----- ```python import dash_qr_manager as dqm import dash from dash.dependencies import Input, Output import dash_html_components as html app = dash.Dash(__name__) app.layout = html.Div( children=[ dqm.DashQrReader( id='qr-code-reader', style={'width': '50%'} ), html.Div(id='qr-code-data') ] ) @app.callback( Output('qr-code-data', 'children'), Input('qr-code-reader', 'result') ) def code(qr_code_data): return qr_code_data if __name__ == '__main__': app.run_server(debug=True) ``` Documentation ====== DashQrGenerator ----- ``` Keyword arguments: - id (string; optional): The ID used to identify this component in Dash callbacks. - data (string; optional): The data to encode. - framed (boolean; optional): Adds a frame to the image. - size (number; optional): Image size in pixels (width x height). Min value: 30, Max value: 547. - style (dict; optional): The style of the QR code. for more information: https://www.npmjs.com/package/react-google-qrcode ``` DashQrReader ----- ``` Keyword arguments: - id (string; optional): The ID used to identify this component in Dash callbacks. - className (string; optional): ClassName for the container element. - containerStyle (dict; optional): Style object for the container element. - result (string; optional): decoded data. - scanDelay (number; optional): The scan period for the QR hook. - style (dict; optional): The style of the QR code. - videoContainerStyle (dict; optional): Style object for the video container element. - videoId (string; optional): The ID for the video element. - videoStyle (dict; optional): Style object for the video element. for more information: https://www.npmjs.com/package/react-qr-reader ```


نحوه نصب


نصب پکیج whl dash-qr-manager-0.0.4:

    pip install dash-qr-manager-0.0.4.whl


نصب پکیج tar.gz dash-qr-manager-0.0.4:

    pip install dash-qr-manager-0.0.4.tar.gz