Created day-selector.py to automatically open python file for current day
This commit is contained in:
parent
7bcb9a9e80
commit
d5a3b15f88
|
@ -0,0 +1,22 @@
|
||||||
|
import os
|
||||||
|
from datetime import date
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
currentDay = date.today().day
|
||||||
|
reposDirectory = f"/home/{os.getlogin()}/repos/advent-of-code-2022/"
|
||||||
|
dayGroups = [(int(days[4:].split('-')[0]), int(days[4:].split('-')[1])) for days in [directory for directory in os.listdir(reposDirectory) if directory.startswith('days')][::-1]]
|
||||||
|
indexOfDayGroup = -1
|
||||||
|
for dayGroup in dayGroups:
|
||||||
|
if dayGroup[0] < currentDay < dayGroup[1]:
|
||||||
|
indexOfDayGroup = dayGroups.index(dayGroup)
|
||||||
|
break
|
||||||
|
currentDayGroupDir = f"{reposDirectory}/days{dayGroups[indexOfDayGroup][0]}-{dayGroups[indexOfDayGroup][1]}"
|
||||||
|
currentDayDir = f"{currentDayGroupDir}/day{currentDay}"
|
||||||
|
if f"day{currentDay}" not in os.listdir(currentDayGroupDir):
|
||||||
|
os.system(f"mkdir {currentDayDir}")
|
||||||
|
os.system(f"vim {currentDayDir}/day{currentDay}.py")
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
Loading…
Reference in New Issue