Wanted to combine a few things that I know or want to learn to create a small project. This project is to use API to make a call to a public API that serve news headline. Then take the title of the news and run it through Google Cloud’s natural language API for sentiment analysis… Continue reading Sentiment analysis on news papers headline and store in MongoDB
Category: Python
FastAPI CRUD with MongoDB backend
I have a personal project building a SaaS as a startup idea. For now, I am developing the building blocks to complete the whole infrastructure, from mobile app development, backup database design, business plan and etc. For today, I want to build a API services backend that will take requests from mobile and web applications… Continue reading FastAPI CRUD with MongoDB backend
Continuous Deployment (CD) to Cloud Run
I have a personal project to create a generic RestAPI server using FastAPI that can be use as a template to extend for any use case. It should be able to handle PUT, GET, POST, DEL, PATCH and access a backend database. I need the code to be able to run in Google cloud serverless… Continue reading Continuous Deployment (CD) to Cloud Run
Node-RED sending data to IoT Platform
Hello my fellow life time learner. Recently I rebuilt my home Raspberry Pi cluster to upgrade some of the SD card to SSD. I wipe out the entire OS without doing a backup, or documentation on my setup. I need to redo my IoT sensors data to IoT Platform in the cloud. Since I am… Continue reading Node-RED sending data to IoT Platform
Covicnow #2 – ICU utilization by state
The following is the chart from Covicnow (https://covidnow.moh.gov.my/icu/). I will be recreating the chart based on the public domain data from Github First, as usual, need to import Python packages. Then we need to read the CSV from MoH Github into a dataframe. Please note the number of rows (10551) and also the number of… Continue reading Covicnow #2 – ICU utilization by state
Covicnow #1 – new daily cases by state
This visualization will be the first one that I will try to replicate using Python, Pandas, and Matplotlib/Seaborn. The data required from MoH Github are from the following Updated daily new cases for the entire country https://github.com/MoH-Malaysia/covid19-public/blob/main/epidemic/cases_malaysia.csv Updated daily new cases for each state https://github.com/MoH-Malaysia/covid19-public/blob/main/epidemic/cases_state.csv Static data of population for each states https://github.com/MoH-Malaysia/covid19-public/blob/main/static/population.csv First We… Continue reading Covicnow #1 – new daily cases by state
