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
INSTALL.txt | |
LICENSE.txt | |
MANIFEST.in | |
README.md | |
setup.cfg | |
setup.py | |
nltk/VERSION | |
nltk/__init__.py | |
nltk/book.py | |
nltk/collections.py |
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
lib/python3.7/site-packages/nltk-3.4-py3.7.egg-info/PKG-INFO | |
lib/python3.7/site-packages/nltk-3.4-py3.7.egg-info/SOURCES.txt | |
lib/python3.7/site-packages/nltk-3.4-py3.7.egg-info/dependency_links.txt | |
lib/python3.7/site-packages/nltk-3.4-py3.7.egg-info/not-zip-safe | |
lib/python3.7/site-packages/nltk-3.4-py3.7.egg-info/requires.txt | |
lib/python3.7/site-packages/nltk-3.4-py3.7.egg-info/top_level.txt | |
lib/python3.7/site-packages/nltk/VERSION | |
lib/python3.7/site-packages/nltk/__init__.py | |
lib/python3.7/site-packages/nltk/__pycache__/__init__.cpython-37.pyc | |
lib/python3.7/site-packages/nltk/__pycache__/book.cpython-37.pyc |
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
# Natural Language Toolkit: Miscellaneous modules | |
# | |
# Copyright (C) 2001-2019 NLTK Project | |
# Author: Steven Bird <stevenbird1@gmail.com> | |
# URL: <http://nltk.org/> | |
# For license information, see LICENSE.TXT | |
from nltk.misc.chomsky import generate_chomsky | |
from nltk.misc.wordfinder import word_finder | |
from nltk.misc.minimalset import MinimalSet |
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
lib/python3.7/site-packages/nltk-3.4-py3.7.egg-info/PKG-INFO | |
lib/python3.7/site-packages/nltk-3.4-py3.7.egg-info/SOURCES.txt | |
lib/python3.7/site-packages/nltk-3.4-py3.7.egg-info/dependency_links.txt | |
lib/python3.7/site-packages/nltk-3.4-py3.7.egg-info/not-zip-safe | |
lib/python3.7/site-packages/nltk-3.4-py3.7.egg-info/requires.txt | |
lib/python3.7/site-packages/nltk-3.4-py3.7.egg-info/top_level.txt | |
lib/python3.7/site-packages/nltk/VERSION | |
lib/python3.7/site-packages/nltk/__init__.py | |
lib/python3.7/site-packages/nltk/__pycache__/__init__.cpython-37.pyc | |
lib/python3.7/site-packages/nltk/__pycache__/book.cpython-37.pyc |
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
# Scanner produces tokens of the following types: | |
# STREAM-START | |
# STREAM-END | |
# DIRECTIVE(name, value) | |
# DOCUMENT-START | |
# DOCUMENT-END | |
# BLOCK-SEQUENCE-START | |
# BLOCK-MAPPING-START | |
# BLOCK-END |
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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. | |
# Use of this source code is governed by a BSD-style license that can be | |
# found in the LICENSE file. | |
""" | |
Miscellaneous tests. | |
""" |
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
''' | |
A Handy Reference Guide for Understanding and Building Fxns and Plots Using the Plotly Library. | |
Code is mostly not my own. Reference material (and code) is mainly from Flatiron's Learn.co (free) pre-work module. | |
This gist is information/code compiled by Paul Woody for use as a reference sheet. | |
More detail can be found (for free) on Learn.co | |
''' | |
# Plotly reference guide: | |
# Import Plotly and set mode to offline so you don't have to login. |