File size: 2,209 Bytes
a5ad985
4278cf0
4cafb76
a454e1c
4278cf0
a454e1c
 
 
 
 
 
 
4cafb76
 
e096ffd
 
a454e1c
 
e096ffd
a5ad985
e096ffd
a454e1c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e096ffd
 
 
4cafb76
e096ffd
 
4cafb76
a454e1c
 
 
 
 
 
 
4cafb76
e096ffd
4cafb76
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
from pathlib import Path
import streamlit as st
import os
import requests

from form16_parser import build_parser, UnsupportedForm16Error

badges = """[![](https://img.shields.io/static/v1?label=Licence&message=MIT&color=darkgreen)](https://github.com/INF800/form16-parser)
[![stability-alpha](https://img.shields.io/badge/stability-alpha-f4d03f.svg)](https://github.com/mkenney/software-guides/blob/master/STABILITY-BADGES.md#alpha)
[![](https://img.shields.io/static/v1?label=Python&message=3.10+&color=indigo)](https://github.com/INF800/form16-parser) 
[![im](https://img.shields.io/github/stars/INF800/form16-parser.svg?style=social&)]()
"""

def main():
    st.title("Form16 Parser")

    st.markdown(f"{badges}")
    st.write("Source code available @ https://github.com/INF800/form16-parser")
    uploaded_file = st.file_uploader("Upload a PDF file", type="pdf")
    Path("temp_files").mkdir(exist_ok=True, parents=True)

    if uploaded_file is None:
        # If no file is uploaded, load the default PDF file
        default_pdf_url = "https://assets1.cleartax-cdn.com/cleartax/images/1655725194_sampleform16.pdf"
        path = Path("temp_files/sampleform16.pdf")
        # if not path.exists():
        default_pdf_response = requests.get(default_pdf_url)

        with open(str(path), "wb") as f:
            f.write(default_pdf_response.content)

        st.write(f"Parsing {default_pdf_url}.")
        st.write("Try your own form 16 by uploading above.")

        parser = build_parser()
        parsed = parser.parse(str(path), return_output=True)

        st.write("Parsed data (structured):")
        st.write(parsed)
    else:
        # Save the uploaded file to a temporary directory
        with open(os.path.join("temp_files", uploaded_file.name), "wb") as f:
            f.write(uploaded_file.getvalue())

        filepath = os.path.join("temp_files", uploaded_file.name)        
        parser = build_parser()

        try:
            parsed = parser.parse(filepath, return_output=True)
            st.write("Parsed data (structured):")
            st.write(parsed)
        except UnsupportedForm16Error as e:
            st.write(e)


        

if __name__ == "__main__":
    main()