In 2019 the Covid pandemic forced the global tourism industry into slowdown. During this period tourism related businesses had to "go digital" to offer unique tour experiences and employ digital marketing to reach their target audience. Fast forward to 2023, tourism related businesses are now more digitally savvy and better able to take advantage of the digital substrate.
To increase productivity and to enhance the information transparency for all tourist visiting Singapore. The Singapore Tourism Board has in 2022 unveiled their Tourism Information & Services Hub (TIH). TIH serves as a one stop shop to access tourism related offerings and travel software services in Singapore.
In this project, I show case the content user api
The entire file system was created in a virtual environment using conda, using python 3.9. Please follow the following steps to deploy application.
- Create conda environment and activate it using:
conda create --name sgtih python=3.9 conda activate sgtih
- Install dependencies using:
pip install -r requirements.txt
- Create a .env file and input registered api key under 'apikey', you can register for an api key here.
touch .env echo API_KEY = 'apikey' > .env
The folder directory layout is as below:
graph LR;
A([somehing])-->B;
A-->C;
B-->E;
C-->E;
E-->D;