-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHome.py
90 lines (68 loc) · 3.93 KB
/
Home.py
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
import streamlit as st
import pandas as pd
def main():
st.set_page_config(page_title="TULIT - The Universal Legal Informatics Toolkit", page_icon="👋")
st.write("# TULIT")
st.write("## The Universal Legal Informatics Toolkit 👋")
st.sidebar.success("Test the demo by clicking on the sidebar options.")
tabs = st.tabs(["Home", "About", "Contribute", "Contact"])
with tabs[0]:
st.markdown(
"""
The Universal Legal Informatics Toolkit is an open-source web app that aims to
overcome technical interoperability barriers of legal data to enable additional use cases.
It provides functionalities to:
- Download a document from Cellar
- Parse legal documents in various standard formats (Akoma Ntoso, FORMEX4, and XHTML)
**👈 Select a demo from the sidebar** to see some examples
of what TULIT can do!
"""
)
with tabs[1]:
st.markdown(
"""
## About
TULIT is a web application which aims to overcome technical interoperability barriers when accessing and processing legal data. Its mission is to provide a comprehensive toolkit that supports:
- the retrieval of legislative resources of a variety of EU entities
- the transformation of such legal data into a python-friendly format to enable further use cases.
As of now, TULIT supports the download of data from the following data sources:
- [Cellar](https://op.europa.eu/en/web/cellar#:~:text=Cellar%20is%20the%20common%20data%20repository%20of%20the,order%20to%20be%20used%20by%20humans%20and%20machines.), the Semantic Repository of the Publications Office of the EU
- [Normattiva](https://www.normattiva.it/), the Italian official legal database
- [Legilux](https://legilux.public.lu/), the official legal database of Luxembourg
Additionally, TULIT provides parsing capabilities for legal documents in the following formats:
- Akoma Ntoso
- FORMEX4
- XHTML
### Vision
Our vision is to create a universal platform that simplifies the handling of legal data, making it accessible and usable for everyone.
"""
)
with tabs[2]:
st.markdown(
"""
## Contribute
We welcome contributions from the community! Whether you're a developer, legal expert, or just someone interested in legal informatics, there are many ways you can help:
- **Code Contributions**: Help us improve the toolkit by fixing bugs, adding new features, or enhancing existing ones.
- **Documentation**: Improve our documentation to make it easier for others to use and contribute to the project.
- **Testing**: Test the toolkit and report any issues or suggest improvements.
### How to Contribute
1. Fork the repository on GitHub.
2. Create a new branch for your feature or bug fix.
3. Submit a pull request with a detailed description of your changes.
We appreciate your support and look forward to your contributions!
"""
)
with tabs[3]:
st.markdown(
"""
## Contact
If you have any questions, suggestions, or feedback, feel free to reach out.
### Contact Information
- [Github TULIT repository](https://github.com/AlessioNar/tulit)
- [GitHub TULIT-UI repository](https://github.com/AlessioNar/tulit-ui)
- [LinkedIn](https://www.linkedin.com/in/alessio-nardin-236a2515a/)
- [Personal Website](https://alessionardin.eu)
"""
)
if __name__ == "__main__":
main()