Giter Site home page Giter Site logo

bgmi's Introduction

BGmi

BGmi is a cli tool for subscribed bangumi.

travis pypi

TODO

  • Download bangumi by file format, file size, etc.

Update Log

  • bgmi followed is deprecated.
  • Update specified bangumi rather than update all bangumi.
  • Play bangumi online with danmaku

Feature

  • Subscribe/unsubscribe bangumi
  • Bangumi calendar
  • Bangumi episode informatdon
  • Download bangumi by subtitle group
  • Web page to view all subscribed bangumi
  • RSS feed for uTorrent
  • Play bangumi online with danmaku (DPlayer)

BGmi

BGmi HTTP Service

BGmi HTTP Service

Installation

For Mac OS X / Linux:

git clone https://github.com/RicterZ/BGmi
cd BGmi
python setup.py install

Or use pip:

pip install bgmi

For Windows: BGmi does not support Windows now.

Usage of bgmi

Show bangumi calendar:

bgmi cal all

Subscribe bangumi:

bgmi add "Re:從零開始的異世界生活" "暗殺教室Ⅱ" "線上遊戲的老婆不可能是女生?" "在下坂本,有何貴幹?" "JoJo的奇妙冒險 不滅鑽石"

Unsubscribe bangumi:

bgmi delete --name "暗殺教室Ⅱ"

Update bangumi database which locates at ~/.bgmi/bangumi.db defaultly:

bgmi update --download
bgmi update --name Rewrite 天真與閃電 --download

Set up the bangumi subtitle group filter and fetch entries:

bgmi filter "線上遊戲的老婆不可能是女生?" "KNA,惡魔島"
bgmi fetch "線上遊戲的老婆不可能是女生?"

Show BGmi configure and modify it:

bgmi config
bgmi config MAX_PAGE 3

Fields of configure file:

  • DMHY_URL: url of dmhy mirror
  • BGMI_SAVE_PATH: path which save the bangumi
  • DOWNLOAD_DELEGATE: which ways used to download bangumi (aria2, aria2-rpc, xunlei)
  • MAX_PAGE: the max page of fetching bangumi info
  • BGMI_TMP_PATH: just a temporary path
  • ARIA2_PATH: path of the aria2c binary
  • ARIA2_RPC_URL: rpc url of aria2c deamon
  • BGMI_LX_PATH: path of xunlei-lixian binary
  • DANMAKU_API_URL: url of danmaku api, read more at DPlayer
  • CONVER_URL: url of bangumi's cover

Usage of bgmi_http

Start BGmi HTTP Service bind on 0.0.0.0:8888:

bgmi_http --port=8888 --address=0.0.0.0

Configure tornado with nginx:

server {
    listen 80;
    root /var/www/html/bangumi;
    autoindex on;
    charset utf8;
    server_name bangumi.example.com;

    location /bangumi {
        alias /var/www/html/bangumi;
    }

    location / {
        # reverse proxy to tornado listened port.
        proxy_pass http://127.0.0.1:8888;
    }
}

Of cause you can use yaaw to manage download items if you use aria2c to download bangumi.

...
location /bgmi_admin {
    auth_basic "BGmi admin (yaaw)";
    auth_basic_user_file /etc/nginx/htpasswd;
    alias /var/www/html/yaaw/;
}

location /jsonrpc {
    # aria2c listened port
    proxy_pass http://127.0.0.1:6800;
}
...

DPlayer and Danmaku

BGmi use DPlayer to play bangumi.

First, setup nginx to access bangumi files. Second, choose one danmaku backend at DPlayer#related-projects.

Use bgmi config to setup the url of danmaku api.

bgmi config DANMAKU_API_URL http://127.0.0.1:1207/

... and enjoy :D

License

The MIT License (MIT)

Copyright (c) 2016 Ricter Zheng

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

bgmi's People

Contributors

ricterz avatar superfashi avatar

Watchers

Zean Zhou avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.