Metadata-Version: 2.1
Name: Flask-Bpjs
Version: 0.0.4
Summary: Bpjs on flask
Home-page: https://github.com/GatLab/Flask-Bpjs.git
Author: Gatlab
Author-email: Gatlab <dev@gatlab.co>
License: Copyright 2022 Gatlab <dev@gatlab.co>        
        Licensed under the Apache License, Version 2.0 (the "License");
        you may not use this file except in compliance with the License.
        You may obtain a copy of the License at        
         http://www.apache.org/licenses/LICENSE-2.0        
        Unless required by applicable law or agreed to in writing, software
        distributed under the License is distributed on an "AS IS" BASIS,
        WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        See the License for the specific language governing permissions and
        limitations under the License.        
Project-URL: Homepage, https://github.com/GatLab/Flask-Bpjs
Project-URL: Bug Tracker, https://github.com/GatLab/Flask-Bpjs/issues
Keywords: flask,bpjs
Platform: any
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Flask
Requires-Dist: lzstring
Requires-Dist: pycryptodome

# Flask-Bpjs

Blah blah blah.

## Compatability
Python 3.6+ is required.

## Installation

```bash
pip install Flask-Bpjs

## Quickstart
1. Import with ```from flask_bpjs import FlaskBpjs```
```python
# example.py
from flask import Flask
from flask_bpjs import FlaskBpjs

app = Flask(__name__)
ext=FlaskBpjs(consid='BPJS_CONST_ID',user_key='BPJS_USER_KEY',secret_key='BPJS_SECRET_KEY',host='BPJS_HOST')
ext.init_app(app)


if __name__ == '__main__':
    app.run()
```
Running the example:
```bash
python example.py
 * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
```
