We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61f9d70 commit a37c8caCopy full SHA for a37c8ca
src/FinancialHolidays.py
@@ -0,0 +1,6 @@
1
+from datetime import date
2
+from holidays import *
3
+
4
+year = int(input("Enter year: "))
5
+for date, name in sorted(financial_holidays(market = 'LSE', years = year).items()): # Replace LSE with your financial market code.
6
+ print(date, name)
0 commit comments