Git Product home page Git Product logo

learning-cron-exchange-api's Introduction

Exchange rates data storage using Docker and scheduled API calls with cron

Description

Learning task: Simple docker app running scheduled script that calls the ExchangeRates API https://exchangeratesapi.io/, and saves selected exchange rates to csv files.

  • Columns in csv files represent BASE/CURRENCY rates e.g. EUR/USD, EUR/PLN, EUR/GBP...
  • Files are backed up from the container cache to local directory every 12 hours using restic.
  • When the cache is filled up older files are deleted.

Requirements: docker
For the sake of simplicity the API keys and backup password are hardcoded

Contents

  • backup.sh
  • entrypoint.sh
  • main.py
  • Dockerfile
  • requirements.txt
  • README.md

Execution

  1. Build the docker image

Parameters:
cache (int): limit of the amount of csv files with ticker data (default: 7)

docker build -t mlops-api-cron --build-arg cache=7 <path/to/Dockerfile>

Dockerfile includes hardcoded definition of crontab schedule (API call every 3h, backup every 12h)

  1. Run the container

Requires the path to local backup directory. Local backup won't be created without it.

docker run --name my-api -t -d -v <path/to/local/backup>:/backups mlops-api-cron
  1. Optional: Manual container configuration check (paths included in Mounts section)
docker inspect mlops-api-cron

learning-cron-exchange-api's People

Contributors

filiphagan avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.