From 421d0c73e7f0322cfc0362868f7fb0a31fd4fcd1 Mon Sep 17 00:00:00 2001 From: Logen Kain Date: Wed, 10 Jan 2024 13:03:56 -0500 Subject: [PATCH] First revision complete --- eve-scanning.py | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/eve-scanning.py b/eve-scanning.py index aee5da5..28eac2e 100644 --- a/eve-scanning.py +++ b/eve-scanning.py @@ -1,7 +1,7 @@ import datetime import pyperclip def instructions(): - print(''' + helpText =''' 1. == To home wormhole 2. == Wormhole away from home 3. == Combat Site Data or Relic site. @@ -10,10 +10,13 @@ def instructions(): H == High Sec N == Null Sec J == Jspace (wormholes) - ''') + ''' today = datetime.date.today() - print("\t", today.strftime('%d-%b-%y')) - print() + + helpText += "\t" + helpText += (today.strftime('%d-%b-%y')) + helpText += "\n" + return helpText contents = [] line = ' ' @@ -49,7 +52,7 @@ splitContents.sort() prettyPrint = "" print ("```") prettyPrint += "```\n" -instructions() +print(instructions()) prettyPrint += instructions() last = "nullnope" for line in range(len(splitContents)): @@ -69,5 +72,5 @@ for line in range(len(splitContents)): break print ("```") prettyPrint += ("```") -#pyperclip.copy(prettyPrint.join(" ")) -print(prettyPrint) +pyperclip.copy(prettyPrint) +print("printing pretty print", prettyPrint)