diff --git a/dist/schrutepy-0.1.1-py3-none-any.whl b/dist/schrutepy-0.1.1-py3-none-any.whl deleted file mode 100644 index c41452c..0000000 Binary files a/dist/schrutepy-0.1.1-py3-none-any.whl and /dev/null differ diff --git a/dist/schrutepy-0.1.1.tar.gz b/dist/schrutepy-0.1.1.tar.gz deleted file mode 100644 index 6eac85e..0000000 Binary files a/dist/schrutepy-0.1.1.tar.gz and /dev/null differ diff --git a/dist/schrutepy-0.1.2-py3-none-any.whl b/dist/schrutepy-0.1.2-py3-none-any.whl deleted file mode 100644 index 18e56c6..0000000 Binary files a/dist/schrutepy-0.1.2-py3-none-any.whl and /dev/null differ diff --git a/dist/schrutepy-0.1.2.tar.gz b/dist/schrutepy-0.1.2.tar.gz deleted file mode 100644 index 4b28ca6..0000000 Binary files a/dist/schrutepy-0.1.2.tar.gz and /dev/null differ diff --git a/dist/schrutepy-0.1.3-py3.8.egg b/dist/schrutepy-0.1.3-py3.8.egg new file mode 100644 index 0000000..549b32e Binary files /dev/null and b/dist/schrutepy-0.1.3-py3.8.egg differ diff --git a/dist/schrutepy-0.1.3.tar.gz b/dist/schrutepy-0.1.3.tar.gz new file mode 100644 index 0000000..a190e78 Binary files /dev/null and b/dist/schrutepy-0.1.3.tar.gz differ diff --git a/requirements.txt b/requirements.txt index a28b12d..6b59ad0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,8 +1,9 @@ -pytest==6.1.1 -pip==20.2.3 -wheel==0.35.1 -twine==3.2.0 -black==20.8b1 -pytest-cov==2.10.1 -coveralls==2.1.2 +pytest==6.2.5 +pip==21.1.3 +wheel==0.37.1 +twine==3.7.1 +black==21.12b0 +pytest-cov==3.0.0 +coveralls==3.3.1 + diff --git a/schrutepy.egg-info/PKG-INFO b/schrutepy.egg-info/PKG-INFO index 67f8c6e..f161e88 100644 --- a/schrutepy.egg-info/PKG-INFO +++ b/schrutepy.egg-info/PKG-INFO @@ -1,55 +1,58 @@ Metadata-Version: 2.1 Name: schrutepy -Version: 0.1.2 +Version: 0.1.3 Summary: The Entire Transcripts from the Office in Tidy Format Home-page: https://github.com/bradlindblad/schrutepy Author: Brad Lindblad Author-email: bradley.lindblad@gmail.com License: UNKNOWN -Description: - ![logo](https://github.com/bradlindblad/schrutepy/blob/master/static/logo.png?raw=true) - - -------------- - # The Entire Transcript from the Office in Tidy Format - - -

PyPI version Coverage Status PyUp Black Black -

- - ### Also available in R: [schrute package](https://bradlindblad.github.io/schrute/) - schrute R package - - - - # What is it - The entire text transcripts from the American version of The Office TV show in pandas dataframe. Use this package to practice or learn NLP, text analysis or deep learning. - - # Getting started - You can install easily from PyPi - - - ## Install - ``` - pip install schrutepy - ``` - ## Usage - Pull the transcripts into a data frame with this library's only method: - - ``` - from schrutepy import schrutepy - - df = schrutepy.load_schrute() - - df.head(5) - ``` - - ## Demo - View the full demo on the [website: technistema](https://technistema.com/posts/python-text-analysis-with-the-schrutepy-package/) - - # Contributors - - [Lucas Greybuck](https://github.com/hypercompetent) - Platform: UNKNOWN Classifier: Programming Language :: Python :: 3.6 Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3) Description-Content-Type: text/markdown +License-File: LICENSE + + +![logo](https://github.com/bradlindblad/schrutepy/blob/master/static/logo.png?raw=true) + +-------------- +# The Entire Transcript from the Office in Tidy Format + + +

PyPI version Coverage Status PyUp Black Black +

+ +### Also available in R: [schrute package](https://bradlindblad.github.io/schrute/) +schrute R package + + + +# What is it +The entire text transcripts from the American version of The Office TV show in pandas dataframe. Use this package to practice or learn NLP, text analysis or deep learning. + +# Getting started +You can install easily from PyPi + + +## Install +``` +pip install schrutepy +``` +## Usage +Pull the transcripts into a data frame with this library's only method: + +``` +from schrutepy import schrutepy + +df = schrutepy.load_schrute() + +df.head(5) +``` + +## Demo +View the full demo on the [website: technistema](https://technistema.com/posts/python-text-analysis-with-the-schrutepy-package/) + +# Contributors +- [Lucas Greybuck](https://github.com/hypercompetent) + + diff --git a/schrutepy.egg-info/SOURCES.txt b/schrutepy.egg-info/SOURCES.txt index 2af4384..0792c16 100644 --- a/schrutepy.egg-info/SOURCES.txt +++ b/schrutepy.egg-info/SOURCES.txt @@ -1,5 +1,6 @@ .coverage .travis.yml +LICENSE README.md README.pdf requirements.txt diff --git a/schrutepy.egg-info/requires.txt b/schrutepy.egg-info/requires.txt index c9064eb..06d6587 100644 --- a/schrutepy.egg-info/requires.txt +++ b/schrutepy.egg-info/requires.txt @@ -1,5 +1,5 @@ ipython>=6 -pandas -pip twine>=3 wheel +pip +pandas diff --git a/schrutepy/__pycache__/__init__.cpython-38.pyc b/schrutepy/__pycache__/__init__.cpython-38.pyc index d904075..e141787 100644 Binary files a/schrutepy/__pycache__/__init__.cpython-38.pyc and b/schrutepy/__pycache__/__init__.cpython-38.pyc differ diff --git a/schrutepy/__pycache__/schrutepy.cpython-38.pyc b/schrutepy/__pycache__/schrutepy.cpython-38.pyc index 0138b9a..ef96114 100644 Binary files a/schrutepy/__pycache__/schrutepy.cpython-38.pyc and b/schrutepy/__pycache__/schrutepy.cpython-38.pyc differ diff --git a/setup.py b/setup.py index 024713b..ccaf093 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="schrutepy", - version="0.1.2", + version="0.1.3", author="Brad Lindblad", author_email="bradley.lindblad@gmail.com", description="The Entire Transcripts from the Office in Tidy Format", diff --git a/tests/__pycache__/test_schrutepy.cpython-38-pytest-6.2.5.pyc b/tests/__pycache__/test_schrutepy.cpython-38-pytest-6.2.5.pyc new file mode 100644 index 0000000..da20232 Binary files /dev/null and b/tests/__pycache__/test_schrutepy.cpython-38-pytest-6.2.5.pyc differ