I've encountered little trouble that counter_total was 0 when I tried python-dlt based on README example.
It's because the example doesn't call generate_index().
I know it's called implicitly in almost cases.
But the example reads counter_total immediately after load
therefore I think we need to call generate_index() explicitly in this case.
In addition, I've fixed tiny typo ("loading") in this PR.
Thanks for the useful package!
I've encountered little trouble that
counter_total
was 0 when I triedpython-dlt
based on README example.It's because the example doesn't call
generate_index()
. I know it's called implicitly in almost cases. But the example readscounter_total
immediately afterload
therefore I think we need to callgenerate_index()
explicitly in this case.In addition, I've fixed tiny typo ("loading") in this PR.