This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def getNGrams(wordlist, n): | |
| ngrams = [] | |
| for i in range(len(wordlist)-(n-1)): | |
| ngrams.append(wordlist[i:i+n]) | |
| return ngrams |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (25, 'house') | |
| (20, 'yes') | |
| (20, 'prisoner') | |
| (19, 'mr') | |
| (17, 'man') | |
| (15, 'akerman') | |
| (14, 'mob') | |
| (13, 'black') | |
| (12, 'night') | |
| (11, 'saw') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http://www.oldbaileyonline.org/search.jsp?foo=bar&form=searchHomePage&_divs_fulltext=black&kwparse=and&start=0&count=0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http://www.oldbaileyonline.org/search.jsp | |
| ?foo=bar | |
| &form=searchHomePage | |
| &_divs_fulltext=black | |
| &kwparse=and | |
| &start=0 | |
| &count=0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| &variable=value |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http://www.oldbaileyonline.org/search.jsp?form=searchHomePage&_divs_fulltext=abc&kwparse=advanced&_persNames_surname=def&_persNames_given=ghi&_persNames_alias=gjl&_offences_offenceCategory_offenceSubcategory=breakingPeace&_verdicts_verdictCategory_verdictSubcategory=guilty%7Cinsane&_punishments_punishmentCategory_punishmentSubcategory=corporal%7Cpillory&_divs_div0Type_div1Type=sessionsPaper%7CtrialAccount&fromMonth=01&fromYear=1674&toMonth=12&toYear=1913&ref=&submit.x=0&submit.y=0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http://www.oldbaileyonline.org/search.jsp | |
| ?form=searchHomePage | |
| &_divs_fulltext=abc | |
| &kwparse=advanced | |
| &_persNames_surname=def | |
| &_persNames_given=ghi | |
| &_persNames_alias=gjl | |
| &_offences_offenceCategory_offenceSubcategory=breakingPeace | |
| &_verdicts_verdictCategory_verdictSubcategory=guilty%7Cinsane | |
| &_punishments_punishmentCategory_punishmentSubcategory=corporal%7Cpillory |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http://www.oldbaileyonline.org/search.jsp?foo=bar&form=searchHomePage&_divs_fulltext=mulatto*+negro*&kwparse=advanced&_divs_div0Type_div1Type=sessionsPaper%7CtrialAccount&fromYear=1700&fromMonth=00&toYear=1750&toMonth=99&start=0&count=0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http://www.oldbaileyonline.org/search.jsp | |
| ?foo=bar | |
| &form=searchHomePage | |
| &_divs_fulltext=mulatto*+negro* | |
| &kwparse=advanced | |
| &_divs_div0Type_div1Type=sessionsPaper%7CtrialAccount | |
| &fromYear=1700 | |
| &fromMonth=00 | |
| &toYear=1750 | |
| &toMonth=99 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| +"the black" -"black gelding" -"black mare" -"black horse" -"black silk" -"black cloth" -"black cotton" |