Skip to content

Instantly share code, notes, and snippets.

@LiamJolly
Last active February 18, 2017 08:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LiamJolly/1a56cc54e2f48711d50dccfabe27d862 to your computer and use it in GitHub Desktop.
Save LiamJolly/1a56cc54e2f48711d50dccfabe27d862 to your computer and use it in GitHub Desktop.
import file_utils
file_path = "INSERT_PATH_HERE"
def get_users():
users = file_utils.read_file(file_path)
return users
def save_users(users):
file_utils.write_file(file_path, users)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment