First revision complete
This commit is contained in:
parent
793d0ee579
commit
421d0c73e7
@ -1,7 +1,7 @@
|
|||||||
import datetime
|
import datetime
|
||||||
import pyperclip
|
import pyperclip
|
||||||
def instructions():
|
def instructions():
|
||||||
print('''
|
helpText ='''
|
||||||
1. == To home wormhole
|
1. == To home wormhole
|
||||||
2. == Wormhole away from home
|
2. == Wormhole away from home
|
||||||
3. == Combat Site Data or Relic site.
|
3. == Combat Site Data or Relic site.
|
||||||
@ -10,10 +10,13 @@ def instructions():
|
|||||||
H == High Sec
|
H == High Sec
|
||||||
N == Null Sec
|
N == Null Sec
|
||||||
J == Jspace (wormholes)
|
J == Jspace (wormholes)
|
||||||
''')
|
'''
|
||||||
today = datetime.date.today()
|
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 = []
|
contents = []
|
||||||
line = ' '
|
line = ' '
|
||||||
@ -49,7 +52,7 @@ splitContents.sort()
|
|||||||
prettyPrint = ""
|
prettyPrint = ""
|
||||||
print ("```")
|
print ("```")
|
||||||
prettyPrint += "```\n"
|
prettyPrint += "```\n"
|
||||||
instructions()
|
print(instructions())
|
||||||
prettyPrint += instructions()
|
prettyPrint += instructions()
|
||||||
last = "nullnope"
|
last = "nullnope"
|
||||||
for line in range(len(splitContents)):
|
for line in range(len(splitContents)):
|
||||||
@ -69,5 +72,5 @@ for line in range(len(splitContents)):
|
|||||||
break
|
break
|
||||||
print ("```")
|
print ("```")
|
||||||
prettyPrint += ("```")
|
prettyPrint += ("```")
|
||||||
#pyperclip.copy(prettyPrint.join(" "))
|
pyperclip.copy(prettyPrint)
|
||||||
print(prettyPrint)
|
print("printing pretty print", prettyPrint)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user