First revision complete

This commit is contained in:
Logen Kain 2024-01-10 13:03:56 -05:00
parent 793d0ee579
commit 421d0c73e7

View File

@ -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)