Sufiyan Adhikari

Results 13 comments of Sufiyan Adhikari

#### Edit: You may use the `test_dummy_predictor` test added in 50c6ba93ed387f0fef6620189688e311fe7c599c to test the input and working of this PR. #### Original Comment (outdated): @Zburatorul use below code as `generic_importer_source_test.py`....

smart-importer wraps the `ImporterProtocol.extract` and modifies the returned `imported_entries`. `existing_entries` and `imported_entries` are `List[Transaction]`. Importers generally write the source posting, and target posting is predicted by smart-importer. deduplication is optional...

The `ImporterSource` balances the amounts by adding FIXME account that beancount_import may make a prediction for and the UI allows you to modify it. If you wrap the `ImporterProtocol` subclass...

I suppose the `UNCONFIRMED_ACCOUNT_KEY` is the missing part in this jigsaw. You may add to `ImporterSource` a func that would add this to any non-source and non-FIXME posting that it...

![Screenshot from 2022-03-27 22-38-23](https://user-images.githubusercontent.com/34011516/160292619-eabb47a9-7a8b-4151-868d-1aa022117617.png) I am stuck at this point, where the captcha always fails... Logging in from the web, it doesn't uses this type of captcha, but instead uses...

@jbms @Zburatorul Hey guys, this feels ready now. Sorry I dropped out of the loop 4 years ago :p Cherry-picked from #60 Now, if you wrap the importers in smart_importer's...

Is this implemented or part of the roadmap somewhere so I can track it? Also, is there a way to achieve this effect currently in LECL by whatever complex way?...

The entities in question have zero vectors and that seem to trigger the nan. It should be 0 instead of nan.

@kosli You may raise a PR to allow importers to set `source_desc`by changing [this](https://github.com/jbms/beancount-import/blob/c2c4c554fa178d659b3eb2cc4758faaedfeed473/beancount_import/source/generic_importer_source.py#L96) ```py if isinstance(posting.meta, dict): posting.meta["source_desc"] = entry.narration posting.meta["date"] = entry.date ``` to ```py if isinstance(posting.meta, dict):...

@sclu1034 It clearly is an oversight from my side when I implemented the generic importer source. I didn't knew better. Try removing [this break](https://github.com/jbms/beancount-import/blob/c2c4c554fa178d659b3eb2cc4758faaedfeed473/beancount_import/source/generic_importer_source.py#L98) and [the one below it](https://github.com/jbms/beancount-import/blob/c2c4c554fa178d659b3eb2cc4758faaedfeed473/beancount_import/source/generic_importer_source.py#L101) Now...