Metadata-Version: 2.1
Name: thelatinlibrary
Version: 0.3.0
Summary: An unofficial thelatinlibrary.com client
Home-page: https://github.com/hearot/thelatinlibrary
Author: hearot
Author-email: gabriel@hearot.it
License: GNU General Public License v3
Download-URL: https://github.com/hearot/thelatinlibrary/archive/v0.2.0.tar.gz
Description: 
        # thelatinlibrary <img src="https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/intermediary/f/264498ee-73ce-49d8-8ebc-f1f845fff514/d9clbzg-a94e9f45-a32c-4fef-a56d-64e8040539c9.png" width=40 height=40/>
        
        [![License: GNU General Public License v3](https://img.shields.io/badge/License-GNU%20General%20Public%20License%20v3-blue.svg)](https://github.com/hearot/thelatinlibrary/blob/master/LICENSE) [![Developer: Hearot](https://img.shields.io/badge/Developer-%20Hearot-red.svg)](https://hearot.it)
        
        Use [thelatinlibrary](http://www.thelatinlibrary.com) to search all you want. The best database of latin texts has landed on [Python](https://python.org).
        
        ## Install
        
        ### Via [PyPi.org](https://pypi.org/project/thelatinlibrary/)
        
        Use this piece of code:
        
        ```
        pip install thelatinlibrary
        ```
        
        ### Via GitHub
        
        Use this piece of code:
        
        ```
        pip install git+https://github.com/hearot/thelatinlibrary.git
        ```
        
        ### Downloading files
        
        *In primis* (from Latin, “firstable”), **clone** the repository:
        
        ```
        git clone https://github.com/hearot/thelatinlibrary.git
        ```
        
        Then, change directory:
        
        ```
        cd thelatinlibrary
        ```
        
        And finally, install the **package**:
        
        ```
        sudo python setup.py install
        ```
        
        ## Example
        
        ```python
        import thelatinlibrary
        
        authors = thelatinlibrary.get_authors()
        
        for author in authors:
            print(author, author.works())
            
        caesar = thelatinlibrary.get_author_by_name("caesar")
        print(caesar.works())
        ```
        
        ## License
        
        This library is licensed by the [GNU General Public License v3](https://github.com/hearot/thelatinlibrary/blob/master/LICENSE). [The Latin Library](http://www.thelatinlibrary.com) is not affiliated with this project. The [logo](https://www.deviantart.com/undevicesimus/art/Polandball-Icon-Romeball-565346284) used in the title has been created by [undevicesimus](https://www.deviantart.com/undevicesimus).
        
Keywords: python,python3,latin,library,scraper,thelatinlibrary
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
