https://github.com/databiosphere/arrow
https://github.com/databiosphere/arrow
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/databiosphere/arrow
- Owner: DataBiosphere
- Created: 2019-08-15T15:37:28.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-04-16T23:58:51.000Z (about 2 years ago)
- Last Synced: 2025-06-27T01:38:02.817Z (11 months ago)
- Language: Python
- Size: 17.6 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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
```