Metadata-Version: 2.1
Name: gematriapy
Version: 0.1.0
Summary: Convert numbers to Hebrew letters
Home-page: https://github.com/NoamNol/gematriapy
Author: Noam Nol
Author-email: noamnol19@gmail.com
License: MIT
Description: # gematriapy
        Convert numbers to Hebrew letters
        
        ## Install
        ```bash
        pip install gematriapy
        ```
        
        ## Usage
        ```python
        from gematriapy import Gematria
        gematria = Gematria()
        gematria.number_to_hebrew(3) # => "ג"
        ```
        
        ```python
        gematria.number_to_hebrew(15) # => "טו"
        ```
        
        ```python
        gematria.number_to_hebrew(822) # => "תתכב"
        ```
        
        > **NOTE**: Numbers greater than 999 are not supported yet.
        
Keywords: hebrew gematria gematriapy
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 4 - Beta
Requires-Python: >=3.7
Description-Content-Type: text/markdown
