U
    e                     @   s&   d dl mZmZ G dd dedZdS )    )ABCMetaabstractmethodc                   @   s   e Zd ZdZedd ZdS )StemmerIzx
    A processing interface for removing morphological affixes from
    words.  This process is known as stemming.

    c                 C   s   dS )z
        Strip affixes from the token and return the stem.

        :param token: The token that should be stemmed.
        :type token: str
        N )selftokenr   r   N/var/www/html/assets/scripts/venv/lib/python3.8/site-packages/nltk/stem/api.pystem   s    zStemmerI.stemN)__name__
__module____qualname____doc__r   r	   r   r   r   r   r      s   r   )	metaclassN)abcr   r   r   r   r   r   r   <module>
   s   