lbctousd.py 315 B

123456789101112
  1. #!/usr/bin/env python
  2. # This is a plugin for converting lbc to usd
  3. # (c) TrueAuraCoral 2021 - under GNU GPLv3 or any later version.
  4. # Make sure you pip install this
  5. import requests
  6. # Get how much lbc
  7. lbc = input("How much LBC? ")
  8. # Print it out
  9. print(requests.get("https://rate.sx/" + lbc + "LBC").text.rstrip())