This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
""" | |
Script that creates Personal Access Token for Gitlab API; | |
Tested with: | |
- GitLab Community Edition 10.1.4 | |
- Gitlab Enterprise Edition 12.6.2 | |
""" | |
import sys | |
import requests | |
from urllib.parse import urljoin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Created by bing at 2019-12-17 08:58 | |
*/ | |
package rscrawler | |
import ( | |
"github.com/anaskhan96/soup" | |
"io/ioutil" | |
"log" | |
"net/http" |