Need list of txn #32
-
I need list of txn without consolidating them. Is there an option for that? Something like date, fund name, txn type, NAV, units, amount ... I want list of all txns in the statement like above. Please let me know if it is possible. |
Beta Was this translation helpful? Give feedback.
Answered by
codereverser
May 24, 2021
Replies: 1 comment 1 reply
-
The csv output exactly does this .. It prints the parsed data in the following format as a CSV
Usage: cmd $ casparser -p password -o output.csv filename.pdf
Generating Detailed CSV file...
File saved : output.csv
OR in script csv_data = read_cas_pdf(filename, password=passwd, output="csv") Can you please test and let me know? |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
codereverser
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The csv output exactly does this ..
It prints the parsed data in the following format as a CSV
Usage:
cmd
$ casparser -p password -o output.csv filename.pdf Generating Detailed CSV file... File saved : output.csv
OR in script
Can you please test and let me know?