Metadata-Version: 2.1
Name: mindsdb-server
Version: 1.0.5
Summary: MindsDB server, provides server capabilities to mindsdb native python library
Home-page: https://github.com/mindsdb/mindsdb_server
Author: MindsDB Inc
Author-email: jorge@mindsdb.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.4
Description-Content-Type: text/markdown
Requires-Dist: mindsdb (>=1.2.5)
Requires-Dist: flask
Requires-Dist: flask-restplus

This server uses flask_restplus to define the API


# Development installation

To install and run mindsdb_server for development, activate your virtualenv and run:

```python
python setup.py develop
pip install -r requirements.txt
cd mindsdb_server
python3 server.py
```

# The code inside mindsdb_server

 * ```namespaces/<endpoint.py>```: these contains a file per API resource 
 * ```namespaces/configs```: these are the configs for the API resources
 * ```namespaces/entitites```: these are specs for the document objects that can be returned by the API resources



