#!/usr/bin/env python # coding: utf-8 # # Hands On with the fabric of an ancient text # # Before the hands-on session, make sure Python 3.6 or higher is installed. # # Then install Text-Fabric and Jupyter. # # Do it by following the instructions in the # [Text-Fabric docs](https://annotation.github.io/text-fabric/tf/about/install.html) # # After that install `seaborn`, a python library for graphic plots: # # ``` # pip install seaborn # ``` # # or # # ``` # pip3 install seaborn # ``` # # (if you have installed Text-Fabric you know which) # # Corpus # # The list of available corpora is [here](https://annotation.github.io/text-fabric/tf/about/corpora). # # There are hands-on guides for # # * [`oldbabylonian` Old Babylonian Letters](oldbabylonian.ipynb) # * [`dss` Dead Sea Scrolls](dss.ipynb) # * [`quran` Q'uran](quran.ipynb) # # Each hands-on guide takes you through the activities of browsing the corpus, searching it, and collecting # information that cannot easily expressed as a search instruction. # # These three corpora differ in data features, section structure, granularity, richness of data features. # That is why the toy problems in these hands on are different. It is worth studying all three of them. # # Head over to the hands-on guide corpus of your prime interest by clicking one of the three links above. # # These guides will let you download the corpus data. # # Please do that before the hands-on session. # # Problems? # # If things are not going as expected, file an issue on # [GitHub](https://github.com/annotation/text-fabric/issues). # In[ ]: