I'm trying to extract verbs from German sentences. The problem is, for example in this sentence
Ich rufe noch einmal an.
Im getting rufe as the verb but its anrufe. I'm using textBlob and dont really know anything about linguistic. and using textblob I came accross POS tags. It tagged an
as "RP"(doesnt know what that means) and rufe
as "VB". I could just glue all "RP" and "VB" together but then again there could more than one verb in a sentence.
What is the right way of doing this?