https://github.com/oslokommune/okdata-data-exporter
AWS Lambda function for generating a list of presigned S3 URLs from a dataset ID
https://github.com/oslokommune/okdata-data-exporter
dataplatform
Last synced: 28 days ago
JSON representation
AWS Lambda function for generating a list of presigned S3 URLs from a dataset ID
- Host: GitHub
- URL: https://github.com/oslokommune/okdata-data-exporter
- Owner: oslokommune
- License: mit
- Created: 2021-05-14T12:16:17.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2025-11-18T09:17:11.000Z (3 months ago)
- Last Synced: 2025-11-18T11:20:17.990Z (3 months ago)
- Topics: dataplatform
- Language: Python
- Homepage:
- Size: 997 KB
- Stars: 1
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Data exporter
REST API to generate a list of presigned S3 URLs for downloading a dataset distribution.
## Setup
1. [Install Serverless Framework](https://serverless.com/framework/docs/getting-started/)
2. Install dependencies
```
make init
```
## Running tests
Tests are run using [tox](https://pypi.org/project/tox/).
```
$ make test
```
## Deploy
Deploy to both dev and prod is automatic via GitHub Actions on push to
`main`. You can alternatively deploy from local machine with: `make deploy` or
`make deploy-prod`.
## Code fromatting
Format code with
```
$ make format
```