Metadata-Version: 2.1
Name: similar-documents
Version: 0.0.1
Summary: Generate similarity scores for documents from cli
Home-page: UNKNOWN
Author: "Yuichi Tateno"
Author-email: hotchpotch@gmail.com
License: MIT
Project-URL: Source, https://github.com/hotchpotch/similar-documents-cli
Description: # similar-documents
        
        Generates similarity document scores from cli. Useful when combined with static site generators.
        
        ```
        $ similar-documents -t japanese -k 2 ~/Dropbox/secon-sites/data/markdowns/recently/*.md | jq . | head -20
        {
          "/home/yu1/Dropbox/secon-sites/data/markdowns/recently/2021-04-01.md": [
            [
              "/home/yu1/Dropbox/secon-sites/data/markdowns/recently/2021-04-26.md",
              0.3123780045484529
            ],
            [
              "/home/yu1/Dropbox/secon-sites/data/markdowns/recently/2021-04-03.md",
              0.17384380113610887
            ]
          ],
          "/home/yu1/Dropbox/secon-sites/data/markdowns/recently/2021-04-02.md": [
            [
              "/home/yu1/Dropbox/secon-sites/data/markdowns/recently/2021-04-26.md",
              0.10715535963136594
            ],
            [
              "/home/yu1/Dropbox/secon-sites/data/markdowns/recently/2021-04-23.md",
              0.09411751563901728
            ]
        ```
        
        ## installation
        
        ```
        pip install -U similar-documents
        ```
        
        ## Lisence
        
        MIT
        
        ## Author
        
        - Yuichi Tateno
        
Keywords: similar,documents
Platform: UNKNOWN
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: testing
