**Full Changelog**: https://github.com/Coddo-Python/SaladPy/compare/v1.0.2-alpha.2...v1.0.2-alpha.3
Adds support for using a bearer token found inside the Salad user's `token.txt` file.
Here is some demo code using the token.
python
import saladpy
import asyncio
TOKEN = "mytoken"
async def main():
client = saladpy.SaladClient(token=TOKEN)
Get Balance
balance = await client.balance()
print("Your Salad balance is", balance.currentBalance)
Safely close SaladClient (Highly Recommended)
await client.close()
asyncio.run(main())