Skip to content

Instantly share code, notes, and snippets.

View belltailjp's full-sized avatar

Daichi SUZUO belltailjp

View GitHub Profile
@belltailjp
belltailjp / csv2ical.py
Last active January 21, 2022 15:43
JリーグスケジュールCSVのical変換(MITライセンス)
import argparse
import datetime
import os
import re
import textwrap
def icalentry(cols):
day = re.sub(r'\(.+\)', '', cols[3])
ko = "{}/{} {}".format(cols[0], day, cols[4] or '00:00')
from fastapi import FastAPI
from pydantic import BaseModel
app = FastAPI()
class A(BaseModel):
hoge: str