python 自动克隆我的所有要点(要点备份?)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 自动克隆我的所有要点(要点备份?)相关的知识,希望对你有一定的参考价值。

#!/usr/bin/env python
# Git clone all my gists

import json
import urllib
from subprocess import call
from urllib import urlopen
import os
USER = os.environ['USER']

u = urlopen('https://gist.github.com/api/v1/json/gists/' + USER)
gists = json.load(u)['gists']

for gist in gists:
    call(['git', 'clone', 'git://gist.github.com/' + gist['repo'] + '.git'])

以上是关于python 自动克隆我的所有要点(要点备份?)的主要内容,如果未能解决你的问题,请参考以下文章

python 克隆或更新所有用户的要点#backup #github #gists #management

javascript 克隆一个GitHub用户的所有公共要点。

python Mongodb备份要点

python 下载特定用户的所有要点

python 下载特定用户的所有要点

python 下载特定用户的所有要点