niconico.py icon indicating copy to clipboard operation
niconico.py copied to clipboard

ニコニコ動画や生放送等の各種サイトの非公開APIに簡単にアクセスするためのPythonライブラリ

Results 18 niconico.py issues
Sort by recently updated
recently updated
newest added

## 概要 `niconico video download` does not work for certain videos. ### 現象・ログ See below. ### 再現手順 ``` $ python3 ../niconico video https://www.nicovideo.jp/watch/sm43452874 download [INFO] セッションIDを取得中... () Exception in thread...

bug

## 概要 I just want to let you aware that I found some APIs for modifying MyList https://documenter.getpostman.com/view/23763145/2s9YsNdqLs I have created a same issue at https://github.com/niconicolibs/api/issues/2 ### Pros 良くなる点 N/A...

feature

## 概要 コマンドラインツールのログイン方法がクッキ^ファイル指定だけなので他の方法でもできるようにする ### Pros 良くなる点 ### Cons 悪くなる点 ### 実現方法

feature

継承して置き換える。 eg: `from niconico.aio import NicoNico` (開発優先順位は低い)

enhancement

## 概要 video.get_comments()で公式アニメなどのチャンネルコメント及びコミュニティコメントが絡むものが取得できない。 ## 対処法 type="channel"やtype="community"を指定された場合に特殊処理をする #### 特殊処理 threadidとforce_184をflapiから取得し、それをパラメータに加える。 http://flapi.nicovideo.jp/api/getthreadkey?thread=[threadID] また、user_idもパラメータに加える。またthreadIDもメインコメントと異なるのでそれも確認。 ## 備考 チャンネルコメント及びコミュニティコメントはuser_sessionがないと確認できない。

bug

## Overview Currently, even if video information can be acquired, user information cannot be acquired. Therefore, it is recommended to add the object related to user information and the function...

enhancement

大きいプロジェクトになってきたため、examplesなどのフォルダが必要だと思われる。

enhancement

## 概要 ニコニコ生放送の各種データにアクセスするclient`LiveClient`の作成 ## 要素 - 生放送のデータ - 番組の検索 - フォロー中の番組の取得 - 放送中の番組に対する処理 - 放送データのストリーミング取得 - コメントのストリーミング取得 - 放送ネタ・ギフト・広告の操作(放送主判定あり) - 放送が終了した番組に対する処理 - タイムシフトのダウンロード - タイムシフトのコメント取得 - タイムシフトのギフト履歴・広告履歴取得 ## Todo -...

enhancement

## Overview Use Python's decorating function to distinguish whether it is an authentication-required function. ## Sample ~~~python @auth_required def get_own_information(): ~~do something~~ ~~~ ## Tasks - [ ] Create decorating...

enhancement