Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gen コマンドでコンテストの指定にURLを使えるようにする #265

Open
k1832 opened this issue Mar 27, 2022 · 0 comments
Open

Comments

@k1832
Copy link

k1832 commented Mar 27, 2022

現状、genコマンドにおけるコンテストの指定にはコンテストIDを使っています。
ですがコンテストIDを手打ちするのは微妙に面倒ですし、ブラウザなどから雑にコピペしたい時にはURLの方が便利かもしれません。

URLを受け取った時には内部でURLからコンテストIDを取り出すなどしてはどうでしょうか?
正規表現やライブラリを使ってURLの解析をしてもいいですし、
以下のように簡易的にやるのもいいと思います。

# url = "https://atcoder.jp/contests/abc243"
paths = url.split("/")
contest_id = paths[4] if len(paths) >= 5 else paths[0]
print(contest_id)   # abc243
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant