# go-urldownloader **Repository Path**: mirrors_didip/go-urldownloader ## Basic Information - **Project Name**: go-urldownloader - **Description**: Small HTTP daemon that downloads URL content and reupload to S3 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2025-09-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README This is a small HTTP daemon that downloads URL content and reupload to S3 ### Why make this? To test how decoupled a Task can be in [hadou](https://github.com/didip/hadou) ### Development Workflow * Running daemon locally ``` cd $GOPATH/src/github.com/didip/go-urldownloader HTTP_PORT=8080 S3_BUCKET=hadou-test-url-downloader AWS_ACCESS_KEY_ID=abc123 AWS_SECRET_ACCESS_KEY=qwerty go run main.go ``` * Submitting URL to scrape ``` # Assume HTTP_PORT is 8080 curl -d url=http://www.reddit.com/r/python.rss http://localhost:8080/ ```