MCPcopy Index your code
hub / github.com/clips/pattern

github.com/clips/pattern @2.6 sqlite

repository ↗ · DeepWiki ↗ · release 2.6 ↗
3,901 symbols 12,632 edges 155 files 1,050 documented · 27% 2 cross-repo links
README

Pattern

Pattern is a web mining module for the Python programming language. It bundles tools for:

  • Data Mining: Google + Twitter + Wikipedia API, web crawler, HTML DOM parser
  • Natural Language Processing: part-of-speech taggers, n-gram search, sentiment analysis, WordNet
  • Machine Learning: vector space model, k-means clustering, Naive Bayes + k-NN + SVM classifiers
  • Network Analysis: graph centrality and visualization.

It is well documented and bundled with 30+ examples and 350+ unit tests. The source code is licensed under BSD and available from http://www.clips.ua.ac.be/pages/pattern.

Pattern example workflow

Version

2.6

License

BSD, see LICENSE.txt for further details.

Installation

Pattern is written for Python 2.5+ (no support for Python 3 yet). The module has no external dependencies except when using LSA in the pattern.vector module, which requires NumPy (installed by default on Mac OS X). To install Pattern so that it is available in all your scripts, unzip the download and from the command line do:

cd pattern-2.6
python setup.py install

If you have pip, you can automatically download and install from the PyPi repository:

pip install pattern

If none of the above works, you can make Python aware of the module in three ways: - Put the pattern folder in the same folder as your script. - Put the pattern folder in the standard location for modules so it is available to all scripts: * c:\python26\Lib\site-packages\ (Windows), * /Library/Python/2.6/site-packages/ (Mac OS X), * /usr/lib/python2.6/site-packages/ (Unix). - Add the location of the module to sys.path in your script, before importing it:

  MODULE = '/users/tom/desktop/pattern'
  import sys; if MODULE not in sys.path: sys.path.append(MODULE)
  from pattern.en import parsetree

Documentation

http://www.clips.ua.ac.be/pages/pattern

Reference

De Smedt, T., Daelemans, W. (2012). Pattern for Python. Journal of Machine Learning Research, 13, 2031–2035.

Contribute

The source code is hosted on GitHub and contributions or donations are welcomed, see the developer documentation. If you use Pattern in your work, please cite our reference paper.

Bundled dependencies

Pattern is bundled with the following data sets, algorithms and Python packages:

  • Beautiful Soup, Leonard Richardson
  • Brill tagger, Eric Brill
  • Brill tagger for Dutch, Jeroen Geertzen
  • Brill tagger for German, Gerold Schneider & Martin Volk
  • Brill tagger for Spanish, trained on Wikicorpus (Samuel Reese & Gemma Boleda et al.)
  • Brill tagger for French, trained on Lefff (Benoît Sagot & Lionel Clément et al.)
  • Brill tagger for Italian, mined from Wiktionary
  • English pluralization, Damian Conway
  • Spanish verb inflection, Fred Jehle
  • French verb inflection, Bob Salita
  • Graph JavaScript framework, Aslak Hellesoy & Dave Hoover
  • LIBSVM, Chih-Chung Chang & Chih-Jen Lin
  • LIBLINEAR, Rong-En Fan et al.
  • NetworkX centrality, Aric Hagberg, Dan Schult & Pieter Swart
  • PDFMiner, Yusuke Shinyama
  • PyWordNet, Oliver Steele
  • simplejson, Bob Ippolito
  • spelling corrector, Peter Norvig
  • Universal Feed Parser, Mark Pilgrim
  • WordNet, Christiane Fellbaum et al.

Acknowledgements

Authors:

  • Tom De Smedt (tom@organisms.be)
  • Walter Daelemans (walter.daelemans@ua.ac.be)

Contributors (chronological):

  • Frederik De Bleser
  • Jason Wiener
  • Daniel Friesen
  • Jeroen Geertzen
  • Thomas Crombez
  • Ken Williams
  • Peteris Erins
  • Rajesh Nair
  • F. De Smedt
  • Radim Řehůřek
  • Tom Loredo
  • John DeBovis
  • Thomas Sileo
  • Gerold Schneider
  • Martin Volk
  • Samuel Joseph
  • Shubhanshu Mishra
  • Robert Elwell
  • Fred Jehle
  • Antoine Mazières + fabelier.org
  • Rémi de Zoeten + closealert.nl
  • Kenneth Koch
  • Jens Grivolla
  • Fabio Marfia
  • Steven Loria

Core symbols most depended-on inside this repo

len
called by 804
pattern/canvas.js
append
called by 203
pattern/web/soup/BeautifulSoup.py
get
called by 190
pattern/web/cache/__init__.py
str
called by 140
pattern/canvas.js
split
called by 120
pattern/graph/__init__.py
append
called by 109
pattern/text/tree.py
strip
called by 106
pattern/web/__init__.py
get
called by 102
pattern/web/feed/feedparser.py

Shape

Method 2,620
Function 815
Class 466

Languages

Python96%
TypeScript4%

Modules by API surface

pattern/web/__init__.py317 symbols
pattern/db/__init__.py267 symbols
pattern/web/feed/feedparser.py243 symbols
pattern/vector/__init__.py216 symbols
pattern/text/tree.py167 symbols
pattern/canvas.js144 symbols
pattern/web/soup/BeautifulSoup.py132 symbols
pattern/text/__init__.py131 symbols
pattern/graph/__init__.py127 symbols
pattern/text/en/wordnet/pywordnet/wordnet.py114 symbols
test/test_web.py113 symbols
pattern/web/pdf/pdfinterp.py109 symbols

Used by 2 indexed graphs manifest dependencies, hub-wide

For agents

$ claude mcp add pattern \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact