pattern icon indicating copy to clipboard operation
pattern copied to clipboard

Web mining module for Python, with tools for scraping, natural language processing, machine learning, network analysis and visualization.

Results 109 pattern issues
Sort by recently updated
recently updated
newest added

When running the following code: ``` import pattern.nl from pattern.nl import conjugate from pattern.nl import PRESENT, SG, PAST conjugate("ben", PRESENT, 3, SG) ``` I get the following error: ``` Traceback...

MySQL shouldn't be a core dependency, I've moved it to an extra package which can be installed as `pip install pattern[mysql]` if users wish to install with mysql support.

I downloaded the zip and unzipped the `pattern-master` folder to my system. Then I ran the `python setup.py install`. After a bunch of modules were installed, it halted because of...

I want to upgrade from pattern 2.6 to 3.6 I uninstalled, and now I do: `sudo pip install pattern` and get `EnvironmentError: mysql_config not found`

I have read code in "pattern/db" ,there is unnecessary using mysqlclient, as I know,mysqlclient is not enough good at compatibility, how about useing `mysql-connector-python-rf` for few system library requirements?

Guys, I just tried to install your module, however it asks me for some mysql configuration. ``` ERROR: Complete output from command python setup.py egg_info: ERROR: /bin/sh: 1: mysql_config: not...

Attempting to conjugate verbs which contain the "ß" character results in a misspelling. Conjugating the same verb with "ss" in place of "ß" results in the correct spelling. For example,...

Hi, I'm using python 3.5.2 pyinstaller 3.4 pattern == 3.6 Package installed successfully. and imported as `import pattern.text.en as p` When i create executable with pyinstaller this is throwing me...

Hello, This is a peculiar case of enumeration where the tokenization gives inappropriate results. ```en.tokenize('See Section 3.) Or Section 2.)')``` results in ```['See Section 3 .', ') Or Section 2...