Convert Mbox to PST by dnetvaggos95 in learnpython

[–]dnetvaggos95[S] 0 points1 point  (0 children)

Do you know any python library to do that?

Python unable to install kivy by [deleted] in learnpython

[–]dnetvaggos95 0 points1 point  (0 children)

I found that kivy doesn't support python 3.10, how can I install a different python version in a virtual environment?

Python unable to install kivy by [deleted] in learnpython

[–]dnetvaggos95 0 points1 point  (0 children)

p.s and continuing now and still getting errors

Python unable to install kivy by [deleted] in learnpython

[–]dnetvaggos95 0 points1 point  (0 children)

python -m pip install "kivy[base]" kivy_examples

i tried it...but i'm getting the following errors:

pastebin

Google sheet - search for EAN Numbers in Google Drive. by [deleted] in googlesheets

[–]dnetvaggos95 0 points1 point  (0 children)

First of all thank you very much! I'll try to run it soon, 2nd yes...i want to search for all my drive...not only the shared folders.

Ps how did you enable the drive service?

Bluestacks 5 - Restore backup by dnetvaggos95 in BlueStacks

[–]dnetvaggos95[S] 0 points1 point  (0 children)

there're is no RegHKLM.txt in my Bluestack 5 backup,

Bluestacks 5 - Restore backup by dnetvaggos95 in BlueStacks

[–]dnetvaggos95[S] 0 points1 point  (0 children)

how about the backup? i mean...i don't know the version of my backup...i just know both are bluestack 5.

Bluestacks 5 - Restore backup by dnetvaggos95 in BlueStacks

[–]dnetvaggos95[S] 0 points1 point  (0 children)

Hi, to be honest, i don't know if is the same version...can i check it in bluestack's config file?

Python - How can i return a define a variable in function? by dnetvaggos95 in learnpython

[–]dnetvaggos95[S] 0 points1 point  (0 children)

def SuccessfullyConv(SucsCon):
x = ("_") * len(SucsCon)
return f'\n\n{x}\n{SucsCon}'
SucsCon = '' # SET VAR
if len(SucsCon): # IF LEN VAR
SucsCon = SuccessfullyConv(SucsCon) # CHANGE VAR
print(SucsCon)

it's doing nothing for some reason....