Kodu apk ye çevirmek mümkün mü?

Kod Aşağıda :

Kodları bir android telefonda yazıyorum. Pyroid3 ile o yüzden bilgisayarda darklı görünebilir. Geçenlerde tekefon sallayınca görüntü değişiyordu. Bu android yazılımın bir özelliği bunu pythonda yapma şansı var mı ?

from bs4 import BeautifulSoup
import pandas as pd
import requests
from colorama import Fore,Back,Style
import re
#print(dir(Back))
url=“Günlük Hisse Senedi Fiyatları | İş Yatırım
print(Fore.MAGENTA)
print(“BOŞ geçilirse TAVAN yapan hisseleri verir…!!!”)
ara=input(“Aramak istediğiniz Hissenin İLK HARFİNİ giriniz. : “)
hisse=ara[0:1].upper()
“””
for j in dir(BeautifulSoup):
if not j[0]==”":
print(j)
“”"
htmlrequest=requests.get(url)
#print(htmlrequest)
#print(htmlrequest.headers)
#print(60*"
")
html=htmlrequest.text

htmlparser=BeautifulSoup(html,“html.parser”)
#html_parser=htmlparser.find_all(“div”,{“class”:“col-lg-3 col-md-4”})
html_parser=htmlparser.find_all(“tr”)
#işlem başlıyor…
print(Fore.LIGHTYELLOW_EX," Hisse_Adı Son_Fiat Değişim(%) Değişim(TL) Hacim(TL) Hacim(ADET)")
print(" “+” “+35*”="+4*" “+10*”="+2*" “+10*”="+5*" “+10*”="+4*" “+12*”="+2*" “+12*”=")
for k in html_parser:
gec=0
s=str(k)
tit=s[15:54]
if tit[1]==’"’:
gec=1
firma=""
say=0
for r in tit:
if say==0 and r==’"’:
say=1
pass
elif say==1 and r==’"’:
break
else:
firma+=r
kk=k.text.split()
if gec==1:
pass
elif s[16]==firma[0]:
kk=k.text.split()
yüzde=""
for i in kk[3]:
if i==",":
i="."
yüzde=yüzde+i
firma=firma+"("+kk[1]+")"
bilgi=firma.ljust(35)+kk[2].rjust(15)+kk[3].rjust(12)+kk[4].rjust(15)+kk[5].rjust(16)+kk[6].rjust(14)
kkk=str(kk[4])
ae=kkk[0]
#if firma[0:3]==“IS " and ae==”-":
if firma[0:1]==hisse and ae=="-":
print(Back.RED,Fore.WHITE,bilgi,Back.BLACK," \n")
print()

    #elif  firma[0:3]=="IS ":
    elif  firma[0:1]==hisse:    
        print(Back.BLUE,Fore.WHITE,bilgi,Back.BLACK,"          \n")
        print()
    elif  hisse=="" and float(yüzde)>9:  
        print(Back.BLUE,Fore.WHITE,bilgi,Back.BLACK,"          \n")
        print()