File size: 600 Bytes
f616d50
 
 
 
 
 
 
 
28779c1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f616d50
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---
license: mit
title: riskengine
sdk: docker
emoji: 🐢
colorFrom: yellow
colorTo: yellow
---
# BMC RiskEngine API

Analyzes a creator's online presence and produces a risk assessment.

## Getting Started

### Installation

```bash
git clone https://github.com/datavorous/riskengine.git
cd riskengine

python3 -m venv .venv
source .venv/bin/activate # Linux/macOS
# .venv\Scripts\activate # Windows

pip install -e .
pip install uv
```

### Running the API

```bash
uvicorn bmc.api:app --host 127.0.0.1 --port 8000

# or for dev reload
uvicorn bmc.api:app --host 127.0.0.1 --port 8000 --reload
```