Safer way to clear terminal

This commit is contained in:
Jxck-S 2020-08-16 12:53:32 -04:00
parent 9e79f75581
commit 5326fa8ae8
1 changed files with 4 additions and 2 deletions

View File

@ -1,8 +1,10 @@
#Github Updated - NotifyBot 11
#Import Modules
#Clear Terminal
import os
os.system('cls' if os.name == 'nt' else 'clear')
print("\033[H\033[J")
#Ability to Remove old Map
import os
#Setup Geopy
from geopy.geocoders import Nominatim
geolocator = Nominatim(user_agent="OpenSkyBot", timeout=5)