Simple Base64 Decoder written in Python using bottle. Offers an HTML frontend and an API. Works also for encoding!
- clone the repo:
git clone https://github.com/t3c404/base64-decoder.git
the next points are just necessary when you don't use docker
- install bottle:
pip install bottle - run:
python run.py - url:
0.0.0.0:4000(refresh page to clear the list)
- install docker-compose
- run:
docker-compose build(just once) - run:
docker-compose up - url:
0.0.0.0:4000(refresh page to clear the list)
- build container:
docker build -t base64 . - run:
docker run -p 4000:4000 --name base64 base64(just once) - start container:
docker start base64 - stop container:
docker stop base64 - url:
0.0.0.0:4000(refresh page to clear the list)