├── .gitignore ├── CiteVista ├── CiteVista_graphviz.py ├── CiteVista_matrix.py ├── CiteVista_patterns.py ├── CiteVista_people.py ├── CiteVista_statgen.py ├── CiteVista_utils.py ├── CiteVista_wl.py ├── CiteVista_wordvecs.py └── README.md ├── Gensim ├── Gensim_LawCorpus.py ├── Gensim_doc2vec.py ├── Gensim_processing.py ├── Gensim_utils.py └── Gensim_visual.py ├── OPparser ├── OPparser.py ├── OPparser_data.py ├── OPparser_dedupe.py ├── OPparser_lawbox.py ├── OPparser_lawbox_parties.py ├── OPparser_lists.py ├── OPparser_postpro.py ├── OPparser_text_FNsplitter.py ├── OPparser_text_bodySplitter.py ├── OPparser_text_formatFNs.py ├── OPparser_text_formatMainText.py ├── OPparser_text_parseFront.py ├── OPparser_text_parties.py ├── OPparser_text_parties_raw.py ├── OPparser_toDjango.py ├── OPparser_utils.py └── README.md ├── README.md └── STATparser ├── STATparser.py ├── STATparser_DE.py ├── STATparser_PA.py ├── STATparser_USC.py ├── STATparser_data.py ├── STATparser_derules.py ├── STATparser_format.py ├── STATparser_parules.py ├── STATparser_toDjango.py └── STATparser_utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/.gitignore -------------------------------------------------------------------------------- /CiteVista/CiteVista_graphviz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/CiteVista/CiteVista_graphviz.py -------------------------------------------------------------------------------- /CiteVista/CiteVista_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/CiteVista/CiteVista_matrix.py -------------------------------------------------------------------------------- /CiteVista/CiteVista_patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/CiteVista/CiteVista_patterns.py -------------------------------------------------------------------------------- /CiteVista/CiteVista_people.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/CiteVista/CiteVista_people.py -------------------------------------------------------------------------------- /CiteVista/CiteVista_statgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/CiteVista/CiteVista_statgen.py -------------------------------------------------------------------------------- /CiteVista/CiteVista_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/CiteVista/CiteVista_utils.py -------------------------------------------------------------------------------- /CiteVista/CiteVista_wl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/CiteVista/CiteVista_wl.py -------------------------------------------------------------------------------- /CiteVista/CiteVista_wordvecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/CiteVista/CiteVista_wordvecs.py -------------------------------------------------------------------------------- /CiteVista/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/CiteVista/README.md -------------------------------------------------------------------------------- /Gensim/Gensim_LawCorpus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/Gensim/Gensim_LawCorpus.py -------------------------------------------------------------------------------- /Gensim/Gensim_doc2vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/Gensim/Gensim_doc2vec.py -------------------------------------------------------------------------------- /Gensim/Gensim_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/Gensim/Gensim_processing.py -------------------------------------------------------------------------------- /Gensim/Gensim_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/Gensim/Gensim_utils.py -------------------------------------------------------------------------------- /Gensim/Gensim_visual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/Gensim/Gensim_visual.py -------------------------------------------------------------------------------- /OPparser/OPparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/OPparser/OPparser.py -------------------------------------------------------------------------------- /OPparser/OPparser_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/OPparser/OPparser_data.py -------------------------------------------------------------------------------- /OPparser/OPparser_dedupe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/OPparser/OPparser_dedupe.py -------------------------------------------------------------------------------- /OPparser/OPparser_lawbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/OPparser/OPparser_lawbox.py -------------------------------------------------------------------------------- /OPparser/OPparser_lawbox_parties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/OPparser/OPparser_lawbox_parties.py -------------------------------------------------------------------------------- /OPparser/OPparser_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/OPparser/OPparser_lists.py -------------------------------------------------------------------------------- /OPparser/OPparser_postpro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/OPparser/OPparser_postpro.py -------------------------------------------------------------------------------- /OPparser/OPparser_text_FNsplitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/OPparser/OPparser_text_FNsplitter.py -------------------------------------------------------------------------------- /OPparser/OPparser_text_bodySplitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/OPparser/OPparser_text_bodySplitter.py -------------------------------------------------------------------------------- /OPparser/OPparser_text_formatFNs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/OPparser/OPparser_text_formatFNs.py -------------------------------------------------------------------------------- /OPparser/OPparser_text_formatMainText.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/OPparser/OPparser_text_formatMainText.py -------------------------------------------------------------------------------- /OPparser/OPparser_text_parseFront.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/OPparser/OPparser_text_parseFront.py -------------------------------------------------------------------------------- /OPparser/OPparser_text_parties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/OPparser/OPparser_text_parties.py -------------------------------------------------------------------------------- /OPparser/OPparser_text_parties_raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/OPparser/OPparser_text_parties_raw.py -------------------------------------------------------------------------------- /OPparser/OPparser_toDjango.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/OPparser/OPparser_toDjango.py -------------------------------------------------------------------------------- /OPparser/OPparser_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/OPparser/OPparser_utils.py -------------------------------------------------------------------------------- /OPparser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/OPparser/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/README.md -------------------------------------------------------------------------------- /STATparser/STATparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/STATparser/STATparser.py -------------------------------------------------------------------------------- /STATparser/STATparser_DE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/STATparser/STATparser_DE.py -------------------------------------------------------------------------------- /STATparser/STATparser_PA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/STATparser/STATparser_PA.py -------------------------------------------------------------------------------- /STATparser/STATparser_USC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/STATparser/STATparser_USC.py -------------------------------------------------------------------------------- /STATparser/STATparser_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/STATparser/STATparser_data.py -------------------------------------------------------------------------------- /STATparser/STATparser_derules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/STATparser/STATparser_derules.py -------------------------------------------------------------------------------- /STATparser/STATparser_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/STATparser/STATparser_format.py -------------------------------------------------------------------------------- /STATparser/STATparser_parules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/STATparser/STATparser_parules.py -------------------------------------------------------------------------------- /STATparser/STATparser_toDjango.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/STATparser/STATparser_toDjango.py -------------------------------------------------------------------------------- /STATparser/STATparser_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciarrocki/LibreLaw/HEAD/STATparser/STATparser_utils.py --------------------------------------------------------------------------------