Metadata-Version: 2.1
Name: brikeda-client
Version: 0.0.2
Summary: For Computer Vision, Speech Generation, and Controlling waveshare Motor Controller
Home-page: https://github.com/markBosley/brikeda_client
Author: Mark Bosley
Author-email: mark.bosley@brikeda.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Requires-Dist: urllib3
Requires-Dist: base64




# Brikeda Client

Client Proxy to call AI Services on Brikeda, and Classes to support hardware on Raspberry Pi such as waveshare motor controller

## Instructions

1. Install:

```
pip install brikeda_client
```

2. Generate an Brikeda object and call some methods:

```python
from brikeda_client.brikeda import Brikeda

# initialize Brikeda Object with personal key retrieved at brikeda.com/aipanel
brik=Brikeda("4b6871e0d9d84de2926df29483a9aab9")
# send a message. any string will do. but if is a valid hex color it will display it
brik.SyncMessages("#ebde34")
# get a sentiment analysis of a sentence:postive, negative ratings
x = brik.Sentiment('this is exciting')
print(x)

```

