Skip to content

v2.1.0

Choose a tag to compare

@ossiggy ossiggy released this 16 Jan 22:18
· 1 commit to master since this release
4580c38
  • 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"})