Mathis Lövenich
Mathis Lövenich
A config file like: ``` values = [] ``` resolves in: `values=['']` it's unpleasent to have this empyt string. Instead it should be possible to just get an empty list.
If `default_config_files` is set to: ``` ["/etc/conf/app_config.ini", "/etc/conf/conf-enabled/*.ini", "~/.my_app_config.ini", "./app_config.txt"] ``` It would be nice to be able to tell which one was used. Something like: `get_used_config_path()` Or let `parse_args`...
It would be nice to have an option like `--ignore-config` to ignore even the default config paths
Some commandline parameters should be disabled. In my case I want to have a `verbose` mode, which should one be activated via the command line.
In my scenrio I have values being set in the config file like: `ignore = [errors]` Starting my script with: `htcanalyze --ignore recources` will override the internal list `ignore =...
Hey in your code I searched for epsilon, because I was currious at which place you change it but I could only find self.epsilon = 1, which means in your...
The ETH data is corrupted and represents the bitcoin chart from 2018.
In the get.py there are DataFrames concatenated via append which is deprecated I guess: here is my solution (workaround): ``` if provider == 'oanda': csv_files = glob.glob('{0}/currencies/oanda/{1}/{2}/*.csv'.format(data_dir, instrument, year)) data_frames...