ddofborg
                                            ddofborg
                                        
                                    It's a clean install of MySQL v8 on Ubuntu, only default databases and tables. I do see a `utf8mb4` encoding of the tables. Could that be it? ![Screenshot 2021-12-23 at...
If it helps, I can add the `print` somewhere to see the value before normalisation. Just let me know where normalisation happens, and I will `print` before that.
You mean from: ``` @property def tables(self): """Get a listing of all tables that exist in the database.""" return self.inspect.get_table_names(schema=self.schema) ``` to: ``` @property def tables(self): """Get a listing of...
I solved it like this: import logging import time from tqdm import tqdm import io class TqdmToLogger(io.StringIO): """ Output stream for TQDM which will output to logger module instead of...
I tried it too, but wasn't able to finish. Anyone got it working? Maybe create a pull request or a branch for TF2?
Best is to have at least a way to continue. Maybe take the last non weekend rate? Plus of course show a better error message. We also have this issue.
No, no errors. It seems like it's not doing anything. Also then I click on `open default file` (from the activity on the right), I get a message that `Default...
No, nothing. On Sat, Feb 10, 2024 at 9:29 AM Alexander ***@***.***> wrote: > Maybe extension wasn't activated at all? > > When this happens - does it show activation...
Based on @Andrewnolan13 comment I created a function which downloads the ZIP and generates the rates. See https://github.com/ddofborg/exchange_rates Get a list of exchange rates for a given currency on a...
I think theforexapi.com is dead. Some other packages which work: https://github.com/ddofborg/exchange_rates (mine, returns a dict with rates) and https://github.com/oddaspa/easy-exchange-rates (returns a pandas dataframe).