v2.1.0
- Adds ability to override baseURL by providing one in the Method configuration object.
from method import Method
method = Method(env="production", api_key="{API_KEY}", base_url="http://localhost:3000")
# or
method = Method({"env": "production", "api_key": "{API_KEY}", "base_url":"http://localhost:3000"})