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
| #importing pip like this will fail in the future, should be replaced. | |
| for n in range(1): | |
| try: | |
| import pip | |
| except ImportError as missing: | |
| print("You don't have pip. Exiting...") | |
| exit() | |
| #install package function | |
| def install(package): |
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
| #!/bin/bash | |
| name=$0 | |
| if [ -z "$1" ] | |
| then | |
| echo "Usage:" | |
| echo $name "[username]" | |
| else | |
| wget https://minecraftskinstealer.com/api/v1/skin/download/skin/$1 -O $1.png | |
| fi |
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
| #importing pip like this will fail in the future, should be replaced. | |
| for n in range(1): | |
| try: | |
| import pip | |
| except ImportError as missing: | |
| print("You don't have pip. Exiting...") | |
| exit() | |
| #install package function | |
| def install(package): |
NewerOlder