Cover image
Try Now
2016-09-02

Python McParseface: un moyen d'appeler Parsey McParseface par programme dans Python

3 years

Works with Finder

6

Github Watches

8

Github Forks

33

Github Stars

What this project does

This project lets you use Google's SyntaxNet (AKA Parsey McParseface) from python code and without hours of installing and training models.

How to run the parser

import pyparseface

parsed_sentence_dict = pyparseface.parse_sentence(
  "Maybe there was once a human who looked like you, and somewhere along the "
  "line you killed him and took his place. And your superiors don't know.")
print("OrderedDict: %s\n" % parsed_sentence_dict)
pyparseface.pretty_print_dict(parsed_sentence_dict)

Output

OrderedDict: OrderedDict([(u'was VBD ROOT', OrderedDict([(u'Maybe RB advmod', OrderedDict()), (u'there EX expl', OrderedDict()), (u'once RB advmod', OrderedDict()), (u'human NN nsubj', OrderedDict([(u'a DT det', OrderedDict()), (u'looked VBD rcmod', OrderedDict([(u'who WP nsubj', OrderedDict()), (u'like IN prep', OrderedDict([(u'you PRP pobj', OrderedDict())]))]))])), (u', , punct', OrderedDict()), (u'and CC cc', OrderedDict()), (u'killed VBD conj', OrderedDict([(u'somewhere RB advmod', OrderedDict([(u'along IN prep', OrderedDict([(u'line NN pobj', OrderedDict([(u'the DT det', OrderedDict())]))]))])), (u'you PRP nsubj', OrderedDict()), (u'him PRP dobj', OrderedDict()), (u'and CC cc', OrderedDict()), (u'took VBD conj', OrderedDict([(u'place. NN dobj', OrderedDict([(u'his PRP$ poss', OrderedDict())]))])), (u'And CC cc', OrderedDict()), (u'know VB conj', OrderedDict([(u'superiors NNS nsubj', OrderedDict([(u'your PRP$ poss', OrderedDict())])), (u'do VBP aux', OrderedDict()), (u"n't RB neg", OrderedDict())]))])), (u'. . punct', OrderedDict())]))])

was VBD ROOT
 +-- Maybe RB advmod
 +-- there EX expl
 +-- once RB advmod
 +-- human NN nsubj
 |   +-- a DT det
 |   +-- looked VBD rcmod
 |       +-- who WP nsubj
 |       +-- like IN prep
 |           +-- you PRP pobj
 +-- , , punct
 +-- and CC cc
 +-- killed VBD conj
 |   +-- somewhere RB advmod
 |   |   +-- along IN prep
 |   |       +-- line NN pobj
 |   |           +-- the DT det
 |   +-- you PRP nsubj
 |   +-- him PRP dobj
 |   +-- and CC cc
 |   +-- took VBD conj
 |   |   +-- place. NN dobj
 |   |       +-- his PRP$ poss
 |   +-- And CC cc
 |   +-- know VB conj
 |       +-- superiors NNS nsubj
 |       |   +-- your PRP$ poss
 |       +-- do VBP aux
 |       +-- n't RB neg
 +-- . . punct

Author

Most of the hard stuff was written by Google. Ben Plowman made it slightly easier to get up and running.

相关推荐

  • Joshua Armstrong
  • Confidential guide on numerology and astrology, based of GG33 Public information

  • https://suefel.com
  • Latest advice and best practices for custom GPT development.

  • Emmet Halm
  • Converts Figma frames into front-end code for various mobile frameworks.

  • Elijah Ng Shi Yi
  • Advanced software engineer GPT that excels through nailing the basics.

  • https://maiplestudio.com
  • Find Exhibitors, Speakers and more

  • Yusuf Emre Yeşilyurt
  • I find academic articles and books for research and literature reviews.

  • Carlos Ferrin
  • Encuentra películas y series en plataformas de streaming.

  • https://zenepic.net
  • Embark on a thrilling diplomatic quest across a galaxy on the brink of war. Navigate complex politics and alien cultures to forge peace and avert catastrophe in this immersive interstellar adventure.

  • https://reddgr.com
  • Delivers concise Python code and interprets non-English comments

  • apappascs
  • Découvrez la collection la plus complète et la plus à jour de serveurs MCP sur le marché. Ce référentiel sert de centre centralisé, offrant un vaste catalogue de serveurs MCP open-source et propriétaires, avec des fonctionnalités, des liens de documentation et des contributeurs.

  • ShrimpingIt
  • Manipulation basée sur Micropython I2C de l'exposition GPIO de la série MCP, dérivée d'Adafruit_MCP230XX

  • pontusab
  • La communauté du curseur et de la planche à voile, recherchez des règles et des MCP

  • av
  • Exécutez sans effort LLM Backends, API, Frontends et Services avec une seule commande.

  • 1Panel-dev
  • 🔥 1Panel fournit une interface Web intuitive et un serveur MCP pour gérer des sites Web, des fichiers, des conteneurs, des bases de données et des LLM sur un serveur Linux.

  • jae-jae
  • MCP Server pour récupérer le contenu de la page Web à l'aide du navigateur sans tête du dramwright.

  • ravitemer
  • Un puissant plugin Neovim pour gérer les serveurs MCP (Protocole de contexte modèle)

  • Mintplex-Labs
  • L'application tout-en-un desktop et Docker AI avec chiffon intégré, agents AI, constructeur d'agent sans code, compatibilité MCP, etc.

  • GeyserMC
  • Une bibliothèque de communication avec un client / serveur Minecraft.

  • patruff
  • Pont entre les serveurs Olllama et MCP, permettant aux LLM locaux d'utiliser des outils de protocole de contexte de modèle

    Reviews

    1 (1)
    Avatar
    user_9UI7zfn8
    2025-04-17

    I've been using python-mcparseface for a while now and I must say it's a game-changer for parsing tasks. Plowman has done a fantastic job creating this tool. It’s intuitive, efficient, and integrates seamlessly with my existing Python projects. For anyone looking for a reliable parsing library, check it out on GitHub!