An open API service indexing awesome lists of open source software.

https://github.com/databiosphere/arrow


https://github.com/databiosphere/arrow

Last synced: 9 months ago
JSON representation

Awesome Lists containing this project

README

          

# Arrow
Data import translation service

## Requirements
- `python3`
- `pip`

## API
`POST` `/avroToRawls`
- Request Body: `{ "url": "..." }`
- Success Response: Rawls upsert JSON

## Development Setup
```
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
```

Running locally
```
python arrow/server.py
```

Running tests
```
pytest
```

## Deployment
```
ENV= ./scripts/deploy.sh
```