Metadata-Version: 2.1
Name: gorillaml
Version: 0.1.2
Summary: This is the application which allow individual, organization, developer, publisher to manage, publish, monitor webservices, machine learning api, custom forms and many more active development very easily.
Home-page: https://www.gorillaml.com
Author: Washim Ahmed
Author-email: washim.ahmed@gmail.com
License: MIT license
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3
Description-Content-Type: text/markdown
Requires-Dist: Flask
Requires-Dist: Flask-WTF
Requires-Dist: WTForms
Requires-Dist: Werkzeug
Requires-Dist: Flask-Cors
Requires-Dist: SQLAlchemy
Requires-Dist: click
Requires-Dist: watchdog
Requires-Dist: beautifulsoup4
Requires-Dist: requests
Requires-Dist: mpld3
Requires-Dist: scipy
Requires-Dist: pandas
Requires-Dist: matplotlib
Requires-Dist: PyQt5 (<5.13)

Welcome to GorillaML's documentation!
=====================================
This is the application which allow individual, organization, developer, publisher to manage, publish, monitor webservices, machine learning api, custom forms and many more active development very easily.

Installation
=====================================
.. code-block:: python

    pip install gorillaml

DB Initialization
=====================================
After installation to initialized the application database we have to run below command in console.

.. code-block:: python

    gorillaml-canvas init-db

.. warning:: Dont ignore or forget to run this command or else application stop working properly.

Start Application Server
=====================================
To start GorillaML server run below command in terminal

.. code-block:: python

    gorillaml-canvas start-forever

It will expose the application in http://127.0.0.1:5000

Application Login
=====================================
Default username and password of the application is ``admin`` and ``admin``. After successfull login change your default
password as per your convenient time.

Plugin Development
=====================================
GorillaML is created on top of Flask framework and this plugins are created based on Flask blueprint framework. You have full controll to play with gorillaml plugins using Flask blueprint for more details start reading https://flask.palletsprojects.com/en/1.1.x/blueprints/

You will found sample plugins here https://github.com/washim/GorillaML_Plugins

.. warning:: Plugin name and blueprint name should be same inside plugin.py. This **plugin.py** and **__init__.py** is the mandatory to create gorillaml plugins. Dont change **gorillaml** variable inside plugin.py


