$ git config --global user.email "[email protected]"
$ git config --global user.name "TobiTenno"
$ git config --global pull.rebase true
$ git config --global rebase.autoStash true
$ git config --global --bool push.autoSetupRemote true
This file contains 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
# ws testers for python | |
import requests | |
import json | |
url = 'https://api.warframestat.us/pc/?language=en' | |
response = requests.get(url) | |
print(response) |