Code Monkey home page Code Monkey logo

Comments (1)

avi-perl avatar avi-perl commented on August 20, 2024 1

Hi,

I was initially confused by the issue but believe I have an understanding of what you are trying to accomplish. While a specific method for extracting the names of taamin that exist in a string does not exist, it is possible to do with some of the tools provided in the library. Here is a code snippet that extracts a list of unique taamin that are found in a string by name:

from collections import Counter

from hebrew import Hebrew, TAAMIM_CHARS
from hebrew.chars import CHARS

if __name__ == "__main__":
    # Extract each instance of a taamim and get the TaamimChar instance for each
    taamim = [
        CHARS.get(c) for c in
        Hebrew("בְּרֵאשִׁ֖ית בָּרָ֣א אֱלֹהִ֑ים אֵ֥ת הַשָּׁמַ֖יִם וְאֵ֥ת הָאָֽרֶץ׃").string
        if CHARS.get(c) and CHARS.get(c) in TAAMIM_CHARS
    ]

    # Get the name of all the found taamim
    taamim_names = [t.name for t in taamim]

    # print a count of how many times each taam appeared
    print(Counter(taamim_names))  # Counter({'Tifcha': 2, 'Mercha': 2, 'Munach': 1, 'Etnahta': 1, 'Meteg': 1})

from hebrew.

Related Issues (5)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.