Skip to content

Instantly share code, notes, and snippets.

View linjunjj's full-sized avatar
🤔
l

linjun linjunjj

🤔
l
View GitHub Profile
@linjunjj
linjunjj / gitlab
Created August 25, 2019 15:31
批量下载gitlab代码
from urllib.request import urlopen
import json
import subprocess, shlex
import time
import os
gitlabToken = 'your gitlab_token'
gitlabAddr = 'your gitlab address'
target = 'your gitlab project groups name'
@linjunjj
linjunjj / boot.py
Last active February 19, 2019 03:13
boot
#!/usr/bin/python
##
import os
import sys
import re
from bs4 import BeautifulSoup
## get all test catalog
def get_test_all_catalog(name):
CatalogList = []