Home > Mobile >  Save variable in pc python
Save variable in pc python

Time:12-29

I want to save a variable (user input fo mail) in pc. Because I don't want it to ask to login again and again. So please help me with how to store email variable in pc and also how to access it. Thank you.

CodePudding user response:

I'm not sure what you want exactly.

If you just wanna save a text(I mean, string) in variable, then write it to a file like this.

f = open("some_file_to_save.txt", 'w')
f.write(your_variable)
f.close()

Or if you want data to be loaded as python variable again, then you can utilize pickle

CodePudding user response:

May be you need config to your program? So for this use the configparser

import configparser

You need 2 functions, first to Save:

def save_config(email):
    config = configparser.ConfigParser()
    config['DEFAULT'] = {
        'Email': email
    }
    with open('config.ini', 'w') as configfile:
        config.write(configfile)

And second to read saved data:

def read_config():
    config = configparser.ConfigParser()
    config.read('config.ini')
    return config['DEFAULT']['Email']

Then add it to your code or use this example:

try:
    email = read_config()
except:
    print("Config doest contain email, type it:")
    email = input()
print(f"My email is {email}")
save_config(email)
  • Related