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
create temp function occupation_nco_1968(nco string) | |
returns string as ( | |
case | |
when nco = '085' then 'aux_nurse' | |
when nco = '084' then 'nurse' | |
when nco = '067' then 'pharmacist' | |
when nco = '070' then 'allopathic' | |
when nco = '074' then 'dentist' | |
when nco = '071' then 'ayush' | |
when nco = '072' then 'ayush' |
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
import asyncio | |
import threading | |
from typing import Dict | |
import numpy as np | |
import time | |
# import logging | |
# logging.basicConfig(level=logging.DEBUG) |