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
# Run using `python3 main.py` | |
# Input: relative or absolute path of a dir with YAML files inside | |
# Output: JSON files inside the provided directory | |
import os | |
import yaml | |
import json | |
directory_path = os.path.abspath(input("Please enter your directory relative path: ")) | |
directory_list = os.listdir(directory_path) |
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
<!DOCTYPE html> | |
<head></head> | |
<body> | |
<label for="bank">Pilih Bank:</label> | |
<input list="banks" name="bank" id="bank" placeholder="Choose Bank"> | |
<datalist id="banks"> | |
<option value="Bank Mandiri">Bank Mandiri</option> | |
<option value="Bank Bukopin">Bank Bukopin</option> | |
<option value="Bank Danamon">Bank Danamon</option> | |
<option value="Bank Mega">Bank Mega</option> |