refactor: import

main
Khiem Ton 2 years ago
parent 0d7b4a55d2
commit e0a520c8ea
Signed by: th4tkh13m
GPG Key ID: 4D9CF147DCADD05D

@ -0,0 +1,3 @@
from .pokemonlist import PokemonList
from .raidlist import RaidList
from .playerhistory import PlayerHistory

@ -1,7 +1,8 @@
from ispoof.objects.player import Player from ispoof.objects.player import Player
from ispoof.spoofer.scraper import Scraper from ispoof.spoofer.scraper import Scraper
from ispoof.spoofer.device import Device from ispoof.spoofer.device import Device
from ispoof.lists.pokemonlist import PokemonList from ispoof.lists import PokemonList, RaidList
from ispoof.data import Database from ispoof.data import Database
if __name__ == "__main__": if __name__ == "__main__":
@ -17,31 +18,58 @@ if __name__ == "__main__":
scraper = Scraper() scraper = Scraper()
pokemon_lst = PokemonList(engine=engine) pokemon_lst = PokemonList(engine=engine)
raid_lst = RaidList(engine=engine)
while True: while True:
pokemons = scraper.get_hundos() print("1. Raid")
pokemon_lst.insert_to_database(pokemons) print("2. Pokemon")
print("1. Sort by name") raid_or_mon = int(input("Choose 1: "))
print("2. Sort by level") if raid_or_mon == 1:
print("3. Sort by CP") raids = scraper.get_raids()
print("4. Sort by distance") raid_lst.insert_to_database(raids)
print("5. Search name") print("1. Sort by name")
choice = int(input("Your choice: ")) print("2. Sort by level")
if choice == 1: print("3. Sort by distance")
pokemons = pokemon_lst.sort_by_name() print("4. Search name")
elif choice == 2: choice = int(input("Your choice: "))
pokemons = pokemon_lst.sort_by_level() if choice == 1:
elif choice == 3: raids = raid_lst.sort_by_name()
pokemons = pokemon_lst.sort_by_cp() elif choice == 2:
elif choice == 4: raids = raid_lst.sort_by_level()
pokemons = pokemon_lst.sort_by_distance(player.location) elif choice == 3:
raids = raid_lst.sort_by_distance(player.location)
else:
raids = raid_lst.search_by_name(input("Enter query: "))
print("Raid List:")
for i, raid in enumerate(raids):
print(i, raid)
i = int(input("Choose raid: "))
pokemon = raids[i]
location = raid.location
else: else:
pokemons = pokemon_lst.search_by_name(input("Enter query: ")) pokemons = scraper.get_hundos()
print("Pokemon List:") pokemon_lst.insert_to_database(pokemons)
for i, pokemon in enumerate(pokemons): print("1. Sort by name")
print(i, pokemon) print("2. Sort by level")
i = int(input("Choose pokemon: ")) print("3. Sort by CP")
pokemon = pokemons[i] print("4. Sort by distance")
location = pokemon.location print("5. Search name")
choice = int(input("Your choice: "))
if choice == 1:
pokemons = pokemon_lst.sort_by_name()
elif choice == 2:
pokemons = pokemon_lst.sort_by_level()
elif choice == 3:
pokemons = pokemon_lst.sort_by_cp()
elif choice == 4:
pokemons = pokemon_lst.sort_by_distance(player.location)
else:
pokemons = pokemon_lst.search_by_name(input("Enter query: "))
print("Pokemon List:")
for i, pokemon in enumerate(pokemons):
print(i, pokemon)
i = int(input("Choose pokemon: "))
pokemon = pokemons[i]
location = pokemon.location
device.spoof_gps(location) device.spoof_gps(location)
did_activity = None did_activity = None
print("Spoof to") print("Spoof to")

Loading…
Cancel
Save