Make everything a GitHub svg poster and skyline!
简体中文 | English
- Strava
- 开心词场
- 扇贝
- 不背单词
- Nintendo Switch
- GPX
- 多邻国
- Issue
- YouTube
- Bilibili
- GitHub
- GitLab
- Kindle
- WakaTime
- Dota2
- Nike
- Garmin
- Forest
- Json
- Multiple
- 即刻
- 总结
git clone https://github.com/yihong0618/GitHubPoster.git
pip3 install -U github_poster
pip3 install -r requirements.txt
- 不同类型按下方指定的使用方式
- 可以指定年份如
--year 2021
, (default) 或年份区间 2012-2021 - 生成的 svg 在
OUT_FOLDER
内, 用 type 命名(暂时) - 默认自动生成不同颜色需要的 number(特殊颜色), 也可以指定如:
--special-number1 10 -- special_number2 20
- 也可以指定颜色:
--special-color1 pink --special-color2 '#33C6A4'
- 其它参数可以见
python3 -m github_poster <type> --help
- 可以增加动画
--with-animation
(加入 GOGOGO 动画), 可以控制动画时间--animation-time 14
(默认是 10s) - 可以增加 Skyline
--with-skyline
(默认生成的为 to_year), 可以使用--skyline-with-name
将用户名打印在 skyline 上 - 支持 circular svg 配合动画
--is-circular
- 支持隐藏标题中生成类型的名称:
--without-type-name
Make your GPX
GitHub poster
把其它软件生成的(like running_page) gpx files 拷贝到 GPX_FOLDER
之后运行,或指定文件夹如我的文件夹是 ~/blog/GPX_OUT/
python3 -m github_poster gpx --gpx_dir ~/blog/GPX_OUT/ --year 2013-2021
or pip
github_poster gpx --gpx_dir ~/blog/GPX_OUT/ --year 2013-2021
Make your Strava
GitHub poster
-
注册/登陆 Strava 账号
-
登陆成功后打开 Strava Developers -> Create & Manage Your App
-
使用以下链接请求所有权限 将 ${your_id} 替换为 My API Application 中的 Client ID 后访问完整链接
https://www.strava.com/oauth/authorize?client_id=${your_id}&response_type=code&redirect_uri=http://localhost/exchange_token&approval_prompt=force&scope=read_all,profile:read_all,activity:read_all,profile:write,activity:write
http://localhost/exchange_token?state=&code=1dab37edd9970971fb502c9efdd087f4f3471e6e&scope=read,activity:write,activity:read_all,profile:write,profile:read_all,read_all
code
数值为:
1dab37edd9970971fb502c9efdd087f4f3471e6
6. 使用 Client_id
、Client_secret
、Code
请求 refresch_token
在 终端/iTerm
中执行:
curl -X POST https://www.strava.com/oauth/token \
-F client_id=${Your Client ID} \
-F client_secret=${Your Client Secret} \
-F code=${Your Code} \
-F grant_type=authorization_code
示例:
curl -X POST https://www.strava.com/oauth/token \
-F client_id=12345 \
-F client_secret=b21******d0bfb377998ed1ac3b0 \
-F code=d09******b58abface48003 \
-F grant_type=authorization_code
- 同步数据至
Strava
在项目根目录执行:
python3 -m github_poster strava --strava_client_id ${client_id} --strava_client_secret ${client_secret} --strava_refresh_token ${refresh_token} --year 2012-2021
or pip
github_poster strava --strava_client_id ${client_id} --strava_client_secret ${client_secret} --strava_refresh_token ${refresh_token} --year 2012-2021
Make your Nintendo Switch
GitHub poster
需要下载 家长控制那个 APP(Nintendo Switch Parent Controls)
进行抓包(可以使用 mitmproxy 等抓包软件)
python3 -m github_poster ns --ns_session_token ${session_token} --ns_device_id ${device_id} --year 2020-2021
or pip
github_poster ns --ns_session_token ${session_token} --ns_device_id ${device_id} --year 2020-2021
Make your 开心词场
GitHub poster
需要填写开心词场的账号和密码
python3 -m github_poster cichang --cichang_user_name ${user_name} --cichang_password ${pass_word} --year 2016-2021 --special-color1 blue --special-color2 pink --me yihong0618
or
github_poster cichang --cichang_user_name ${user_name} --cichang_password ${pass_word} --year 2016-2021 --special-color1 blue --special-color2 pink --me yihong0618
Make your 多邻国(duolingo)
GitHub poster
python3 -m github_poster duolingo --duolingo_user_name ${user_id} --duolingo_password ${user_password} --year 2015-2021
or
github_poster duolingo --duolingo_user_name ${user_id} --duolingo_password ${user_password} --year 2015-2021
Make your 扇贝(shanbay)
GitHub poster
需要找到你的扇贝 user_id, 从网页抓 xhr 就可以获得如下图
python3 -m github_poster shanbay --shanbay_user_name ${user_name} --year 2012-2021 --special-color1 '#33C6A4' --special-color2 '#33C6A4'
or
github_poster shanbay --shanbay_user_name ${user_name} --year 2012-2021 --special-color1 '#33C6A4' --special-color2 '#33C6A4'
Make your 不背单词(bbdc)
GitHub poster
python3 -m github_poster bbdc --bbdc_user_id ${user_id} --bbdc_type ${time/word}
or
github_poster bbdc --bbdc_user_id ${user_id} --bbdc_type ${time/word}
Make your Issue
GitHub poster
可以参考我的 issue
python3 -m github_poster issue --issue_number ${issue_number} --repo_name ${repo_name} --github_token ${github_token}
or
github_poster issue --issue_number ${issue_number} --repo_name ${repo_name} --github_token ${github_token}
Make your LeetCode
GitHub poster
需要找到你 LeetCode
的 cookie
python3 -m github_poster leetcode --leetcode_cookie ${leetcode_cookie} --year 2019-2021
or
github_poster leetcode --leetcode_cookie ${leetcode_cookie} --year 2019-2021
如果使用的是 leetcode-cn(leetcode **需要加上参数)--cn
python3 -m github_poster leetcode --leetcode_cookie ${leetcode_cookie} --year 2019-2021 --cn
or
github_poster leetcode --leetcode_cookie ${leetcode_cookie} --year 2019-2021 --cn
Make your Twitter
GitHub poster
需要找到你的 Twitter user_id
, 网址里那个就是
python3 -m github_poster twitter --twitter_user_name ${user_name} --year 2018-2021 --track-color '#1C9CEA'
or
github_poster twitter --user_name ${twitter_user_name} --year 2018-2021 --track-color '#1C9CEA'
Make your YouTube
GitHub poster
利用 Google 的历史下载下载 YouTube
的历史数据,选择 json
格式,将 watch-history.json
拷贝到 IN-FOLDER
然后运行
python3 -m github_poster youtube --year 2015-2021
or
github_poster youtube --year 2015-2021
Make your Bilibili
GitHub poster
需要找到你 Bilibili (XHR)
的 cookie
python3 -m github_poster bilibili --bilibili_cookie "${bilibili-cookie}"
or
github_poster bilibili --bilibili_cookie "${bilibili-cookie}"
Make your GitHub
GitHub poster
需要找到你 GitHub Name
(url 后面那个)
python3 -m github_poster github --github_user_name "${github_user_name}" --with-skyline
or
github_poster github --github_user_name "${github_user_name}" --with-skyline
Make your GitLab
GitLab poster
需要找到你 GitLab Name
(url 后面那个)
python3 -m github_poster gitlab --gitlab_user_name "${gitlab_user_name}"
or
github_poster gitlab --gitlab_user_name "${gitlab_user_name}"
如果是自己搭建的 GitLab
,可以指定 GitLab
的 URL,以及登录 GitLab
后得到的 _gitlab_session
这个 cookie
(如果需要登录的话)
python3 -m github_poster gitlab --gitlab_user_name "${gitlab_user_name}" --base_url "https://your-gitlab.com" --session "${gitlab_session}"
or
github_poster gitlab --gitlab_user_name "${gitlab_user_name}" --base_url "https://your-gitlab.com" --session "${gitlab_session}"
Make your Kindle
GitHub poster
在亚马逊网站上需要找到你 Amazon-CN (XHR) Cookie
python3 -m github_poster kindle --kindle_cookie ${kindle_cookie} --cn --year 2018-2021
or
github_poster kindle --kindle_cookie ${kindle_cookie} --cn --year 2018-2021
Make your WakaTime
poster
在 WakaTime 官网获取你的 WakaTime API Key:WakaTime API Key
python3 -m github_poster wakatime --wakatime_key="your_wakatime_api_key" --year 2019-2021
or
github_poster wakatime --wakatime_key="your_wakatime_api_key" --year 2019-2021
Make your Dota2
poster
找到 Dota2
的游戏 ID,例如:Dendi
的 ID 70388657
通过 steam url/username
查询到你的 dota2_id
: https://steamid.xyz/
使用 dota2_id
取得你的游戏数据:https://api.opendota.com/api/players/{dota2_id}/matches.
更多接口信息:https://docs.opendota.com/#section/Introduction"
python3 -m github_poster dota2 --dota2_id="your dota2 id" --year 2017-2018
or
github_poster dota2 --dota2_id="your dota2 id" --year 2017-2018
Make your Nike
poster
获取 Nike 的 refresh_token
- 登录 Nike 官网
- In Developer -> Application-> Storage -> https:unite.nike.com 中找到 refresh_token
python3 -m github_poster nike --nike_refresh_token="your nike_refresh_token" --year 2012-2021
or
github_poster nike --nike_refresh_token="your nike_refresh_token" --year 2012-2021
Make your Garmin
poster
需要填写 Garmin 的账号和密码
python3 -m github_poster garmin --garmin_user_name ${user_name} --garmin_password ${pass_word} --year 2016-2021 --special-color1 blue --special-color2 pink --me yihong0618 --cn
or
github_poster garmin --garmin_user_name ${user_name} --garmin_password ${pass_word} --year 2016-2021 --special-color1 blue --special-color2 pink --me yihong0618 --cn
Make your Forest
GitHub poster
需要填写 Forest 的邮箱账号和密码
python3 -m github_poster forest --forest_email ${user_name} --forest_password ${pass_word} --year 2016-2021 --special-color1 blue --me yihong0618
or
github_poster forest --forest_email ${user_name} --forest_password ${pass_word} --year 2016-2021 --special-color1 blue --me yihong0618
Make your Json(source data) types
poster
make sure your json file format is like data.json
in examples
python3 -m github_poster json --json_file "your json data file" --year 2019-2021 --me PythonHunter
or
github_poster json --json_file "your json data file" --year 2019-2021 --me PythonHunter
Make your Mutiple types
poster
多个 types 最多支持三个,参数参考上面文档
python3 -m github_poster multiple --types "github, twitter, strava" --twitter_user_name "twitter user name" --github_user_name "github user name" --strava_client_id "your strava client id" --strava_client_secret "your strava client secret" --strava_refresh_token "your strava refresh token" --year 2020-2021
or
github_poster multiple --types "github, twitter, strava" --twitter_user_name "twitter user name" --github_user_name "github user name" --strava_client_id "your strava client id" --strava_client_secret "your strava client secret" --strava_refresh_token "your strava refresh token" --year 2020-2021
Make your Summary types
poster
多个 types,参数参考上面文档
python3 -m github_poster summary --types "github, twitter, strava" --twitter_user_name "twitter user name" --github_user_name "github user name" --strava_client_id "your strava client id" --strava_client_secret "your strava client secret" --strava_refresh_token "your strava refresh token" --year 2021
or
github_poster summary --types "github, twitter, strava" --twitter_user_name "twitter user name" --github_user_name "github user name" --strava_client_id "your strava client id" --strava_client_secret "your strava client secret" --strava_refresh_token "your strava refresh token" --year 2021
Make your 即刻 (source data) types
poster
需要找到你的 Jike (XHR)
的 cookie
和 jike_user_id
,jike_user_id
可在个人主页的链接中获取:
如https://web.okjike.com/u/82D23B32-CF36-4C59-AD6F-D05E3552CBF3
中82D23B32-CF36-4C59-AD6F-D05E3552CBF3
为user_id
ps. 只能获取最近一年的数据
可选参数count_type
,指定统计类型:
record
: 动态记录数(默认)like
: 动态被点赞数share
: 动态被分享数comment
: 动态被评论数repost
: 动态被转发数
python3 -m github_poster jike --jike_cookie "your jike cookie" --jike_user_id 'your jike user id' --year 2021 --me "your name" --with-animation --animation-time 14 --count_type 'like'
or
github_poster jike --jike_cookie "your jike cookie" --jike_user_id "your jike user id" --year 2021 --me "your name" --with-animation --animation-time 14 --count_type 'like'
- 任何 Issues PR 均欢迎。
- 可以提交新的 loader
提交PR前:
- 使用 black 对 Python 代码进行格式化。(
black .
) - 使用 isort 对 Python import 进行格式化。(
isort --profile black **/**/*.py
)
- GitLab
- GitHub
- LeetCode
- GitHub from issues
- YouTube
- Bilibili
- GitHub Actions
- Change all default color
- Skyline
- Dota2
- 如何写 loader 的 doc
- pypi
- test
- English README
- fork or clone this repo
- 更改需要的 secrets
- 更改需要的 type, 多个 type 用逗号分隔
- @flopp 特别棒的项目 GpxTrackPoster
- @JasonkayZK Wakatime loader
- @shaonianche Dota2 loader
- @umm233 Jike loader
- @frostming
CI
refator and some Actions code
谢谢就够了