Skip to content

Instantly share code, notes, and snippets.

View Coldsp33d's full-sized avatar

cs95 Coldsp33d

  • Mountain View, CA
View GitHub Profile
@Coldsp33d
Coldsp33d / perfect_exp_helper.py
Created March 24, 2023 10:26
Calculate optimal battles per training account to achieve perfect exp on TPPCRPG. Assumes all exp values in wiki are accurate
import requests
import pandas as pd
import numpy as np
import datetime
import pytz
def is_east_coast_daytime():
# Get the current time in the Eastern timezone
eastern = pytz.timezone('US/Eastern')
current_time = datetime.datetime.now(eastern)