My text file have content like this- {"Id":123, "Name":"xyz"} {"Id":124, "Name":"abc"} {"Id":125,"Name":"kaggle"}
My desired output- Id Name 123 xyz 124 abc 125 Kaggle
| #!/usr/bin/env python3 | |
| __author__ = "Ved Prakash Gupta" | |
| __copyright__ = f"Copyright (C) 2021 {__author__}" | |
| __license__ = "Public Domain" | |
| __version__ = "1.0" | |
| from bs4 import BeautifulSoup | |
| import requests | |
| import sys |
My text file have content like this- {"Id":123, "Name":"xyz"} {"Id":124, "Name":"abc"} {"Id":125,"Name":"kaggle"}
My desired output- Id Name 123 xyz 124 abc 125 Kaggle
This gist was partially inspired by this blog about Next.js Vercel CI with GitHub actions.
An easy way to deploy and host websites for free is to use GitHub pages. If you've deployed a Next.js project to GitHub pages, you may have used a GitHub action similar to this in the past to automatically redeploy the site when a new commit is pushed:
# gh-pages-merge.yml
name: Deploy to gh-pages on merge
on:
push: