Config File
* Added a config file that will be auto-created upon next import.
json
{
"general": {
"max_threads": 32
},
"requests": {
"retries": 3,
"timeout": 5,
"ssl_verify": true
},
"session": {
"token_expiration_threshold": 60
}
}
* `token_expiration_threshold` is minutes.
Other Improvements
* Logging can be turned on with a call to `helios.add_stderr_logger()`
* This allows the user to define custom logging schemes without conflict.
* Various bug fixes and stability improvements.
* Fixed situation where an extra forward slash was being generated in API URLs. On some systems this caused network exceptions.