From Python notebook to Neo4j graph via Cypher query

I have a dataframe which I wish to transfer from python to Neo4j. My dataframe looks like below.

3X_9_6_96791b889a34104272eac29694e7c05f7d7b32f3.png

I want the text column to be connected via Next relationship. Something like below.

I know the Cypher query. My requirement is I want the POS column rows attached as a property to each word. Example Node Dog has has POS NOUN so NOUN should be attached as a property to that node and the NEXT relationship should be maintained as shown above.

How can I write the query in python notebook and see the same results in Neo4j graph? Please assist me with the syntax as I am pretty new to Neo4j and Cypher?

Thank you so much the solution works for my use case. Appreciate your help @paltusplintus