The project contains a API implemented with flask to convert docx file to pdf
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
What things you need to install
cd flask/
- Python3
sudo apt install python3 python3-pip
- Dependencies
pip3 install -r requirements.txt
A step by step series of examples that tell you how to get a development env running
Inside flask dir
export FLASK_APP=run.py
And repeat
export FLASK_ENV=development
Run Flask app
flask run
Go to 127.0.0.1:5000, You will see API Running
Now, Build the container
sudo docker-compose build
And Run it
sudo docker-compose up
Go to 127.0.0.1:80
- Open Postman
- Make a post request to 127.0.0.1:80/docxtopdf
- Go to body and then form-data, In key select 'file' and value shoul be the path of file.
- Click on Send and Download
- Flask - The web framework used
- Gaurav Sahadev - Initial work - Gaurav Sahadev
This project is licensed under the MIT License - see the LICENSE.md file for details