This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # set the dir to the script location | |
| cd "$(dirname "$0")" | |
| # Load environment variables from .env | |
| if [ -f .env ]; then | |
| source .env | |
| else | |
| echo "Error: .env file not found." | |
| exit 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Hawk:6950 | |
| Hawk:6950 | |
| Hawk:6900 | |
| Dove:6775 | |
| Dove:6650 | |
| Hawk:6600 | |
| Dove:6500 | |
| Dove:6425 | |
| Hawk:6400 | |
| Dove:6375 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Author @ Kyaw Khant Nyar | |
| github: kyawkn | |
| """ | |
| import requests | |
| import csv | |
| from bs4 import BeautifulSoup as bs | |
| import urllib | |
| import os |