refactor: only import needed modules

main
CrimsonTome 2022-10-24 00:51:27 +01:00 committed by Rowan Clark
parent c7618064f8
commit 29950721d8
No known key found for this signature in database
GPG Key ID: F620D51904044094
1 changed files with 5 additions and 3 deletions

View File

@ -3,8 +3,10 @@ from cohost.models.user import User
from cohost.models.block import AttachmentBlock, MarkdownBlock
# import os for environment variable management and sys for exiting upon exception
import os, sys
# import os.environ for environment variable management, sys for exiting upon exception and time.sleep to not overload cohost or your own site with requests
from os import environ
import sys
from time import sleep
# set cookie in with below line bwlow, you will have to run again when you reload your shell. to get around this run the line below that and then reload your shell
# export COOKIE="YOUR-TOKEN-HERE"
@ -14,7 +16,7 @@ import os, sys
# try import the cookie, tells the user to set it if it does not exist
try:
cookie = os.environ.get("COOKIE")
cookie = environ.get("COOKIE")
except KeyError:
print ('Please set the environment variable COOKIE with export COOKIE="YOUR-TOKEN-HERE"')
sys.exit(1)