git config --global user.email "myEmail@domain.com"
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 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
| openapi: 3.0.3 | |
| info: | |
| title: Warframe Market API v2 | |
| description: | | |
| Complete OpenAPI specification for Warframe Market API v2. | |
| This API provides access to Warframe trading data including items, orders, rivens, | |
| lich/sister weapons, and user profiles. | |
| **Key Features:** |
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
| # ws testers for python | |
| import requests | |
| import json | |
| url = 'https://api.warframestat.us/pc/?language=en' | |
| response = requests.get(url) | |
| print(response) |